view LazyBear/UI/IndicatorPoint.swift @ 273:39428219f832

Implementing LineChart drag animation
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 17 Mar 2021 17:01:13 +0100
parents
children 62f2c675b666
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: 10, height: 10)
    }
}

struct IndicatorPoint_Previews: PreviewProvider {
    static var previews: some View {
        IndicatorPoint()
    }
}