comparison Sources/InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift @ 14:edf2bfcd8d97

Reorganise structure
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 28 Apr 2021 19:01:40 +0200
parents InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift@f828c7c408d4
children 136de51a74f2
comparison
equal deleted inserted replaced
13:fdab6510dc46 14:edf2bfcd8d97
1 //
2 // IndicatorPoint.swift
3 // InteractiveCharts
4 //
5 // Created by Dennis Concepción Martín on 26/4/21.
6 //
7
8 import SwiftUI
9
10 struct IndicatorPoint: View {
11 var body: some View {
12 Circle()
13 .frame(width: 20, height: 20)
14 .foregroundColor(Color(.systemBlue))
15
16 }
17 }
18
19 struct IndicatorPoint_Previews: PreviewProvider {
20 static var previews: some View {
21 IndicatorPoint()
22 }
23 }