Mercurial > public > stock-charts
comparison Sources/InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift @ 18:136de51a74f2
Change struct to public
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 28 Apr 2021 20:05:00 +0200 |
parents | edf2bfcd8d97 |
children | 24dfde3727c1 |
comparison
equal
deleted
inserted
replaced
17:c0c129bdf65d | 18:136de51a74f2 |
---|---|
5 // Created by Dennis Concepción Martín on 26/4/21. | 5 // Created by Dennis Concepción Martín on 26/4/21. |
6 // | 6 // |
7 | 7 |
8 import SwiftUI | 8 import SwiftUI |
9 | 9 |
10 struct IndicatorPoint: View { | 10 public struct IndicatorPoint: View { |
11 var body: some View { | 11 public var body: some View { |
12 Circle() | 12 Circle() |
13 .frame(width: 20, height: 20) | 13 .frame(width: 20, height: 20) |
14 .foregroundColor(Color(.systemBlue)) | 14 .foregroundColor(Color(.systemBlue)) |
15 | 15 |
16 } | 16 } |