Mercurial > public > stock-charts
view Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift @ 106:0c0d38dca6d8
Change colours to native swiftUI
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Mon, 28 Jun 2021 13:48:03 +0200 |
parents | 766a1169564b |
children | f53d8b9ca92b |
line wrap: on
line source
// // IndicatorPoint.swift // StockCharts // // Created by Dennis Concepción Martín on 30/4/21. // import SwiftUI public struct IndicatorPoint: View { public var body: some View { Circle() .frame(width: 20, height: 20) .foregroundColor(Color.blue) } }