Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 607 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 607 Bytes

Bar-Graph

Simple Bar Graph built with Swift UI

Screenshot Screenshot

Usage

import SwiftUI

VStack {
    Text("My Report")
      .font(.system(size: 40))
      .foregroundColor(.purple)
            
    ScrollView(.horizontal ,showsIndicators: false) {
        BarGraph(reports: Report.all())
    }            
}

Contributing

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.

License

MIT