SwiftUI-Slider

作者: 白色天空729 | 来源:发表于2019-11-19 15:32 被阅读0次

原文链接:https://iosdevcenters.blogspot.com/2019/09/swiftui-slider-example.html

import SwiftUI

struct ContentView: View {

@State var scale: CGFloat = 1.0
    var body: some View {
        VStack {
            Slider(value: $scale, in: 1.0...10.0, step: 0.1)
                .padding(.bottom, 100)
                .frame(width: 200, height: 10, alignment: Alignment.center)

            Text("Slider Value: \(scale)")
                .font(.headline)
                .foregroundColor(Color.red)
                .multilineTextAlignment(TextAlignment.center)
                .background(Color.yellow)
        }
      }
    }

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

输出如图:


Screenshot 2019-09-19 at 9.51.55 AM.png

相关文章

  • SwiftUI-Slider

    原文链接:https://iosdevcenters.blogspot.com/2019/09/swiftui-s...

网友评论

    本文标题:SwiftUI-Slider

    本文链接:https://www.haomeiwen.com/subject/xgawictx.html