Mercurial > public > stock-charts
view 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 |
line wrap: on
line source
// // IndicatorPoint.swift // InteractiveCharts // // Created by Dennis Concepción Martín on 26/4/21. // import SwiftUI struct IndicatorPoint: View { var body: some View { Circle() .frame(width: 20, height: 20) .foregroundColor(Color(.systemBlue)) } } struct IndicatorPoint_Previews: PreviewProvider { static var previews: some View { IndicatorPoint() } }