Mercurial > public > stock-charts
view Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift @ 101:ffc7731f7206
Change opacity
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 22 Jun 2021 16:39:09 +0200 |
parents | 5135ff3343ae |
children | 766a1169564b |
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(.systemBlue)) } }