comparison InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift @ 5:f828c7c408d4

Add source code
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Mon, 26 Apr 2021 19:02:46 +0200
parents
children
comparison
equal deleted inserted replaced
4:fd3fb56afc53 5:f828c7c408d4
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 }