Mercurial > public > lazybear
view LazyBear/UI/IndicatorPoint.swift @ 275:62f2c675b666
Interactive LineChart implemented
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Thu, 18 Mar 2021 17:23:21 +0100 |
parents | 39428219f832 |
children | 47ad897925b6 |
line wrap: on
line source
// // IndicatorPoint.swift // LazyBear // // Created by Dennis Concepción Martín on 17/3/21. // import SwiftUI struct IndicatorPoint: View { var body: some View { Circle() .frame(width: 20, height: 20) .foregroundColor(.blue) } } struct IndicatorPoint_Previews: PreviewProvider { static var previews: some View { IndicatorPoint() } }