Simple Bar Graph built with Swift UI
import SwiftUI
VStack {
Text("My Report")
.font(.system(size: 40))
.foregroundColor(.purple)
ScrollView(.horizontal ,showsIndicators: false) {
BarGraph(reports: Report.all())
}
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.