var body: some View {
NavigationStack {
Form {
Section {
Picker("播放速度", selection: $playSpeed) {
ForEach(speeds, id: \.self) { speed in
Text(String(speed))
}
}
} header: {
Text("播放器")
}
}
.scrollClipDisabled()
}
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: