struct ContentView: View {
   @State private var currentValue: Float = 5

   var body: some View {
      VStack {
         ProgressView(value: currentValue, total: 10)
         Spacer()
      }.padding()
   }
}