view Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift @ 73:cc59a30661f7

Fixing: Modifying state during view update
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Sat, 08 May 2021 19:07:57 +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))
            
    }
}