提问人:Deepanshu Kashyap 提问时间:11/17/2023 最后编辑:Deepanshu Kashyap 更新时间:11/17/2023 访问量:39
如何在 swiftUI 的警报内创建切换按钮
How do I make an toggle button inside an alert in swiftUI
问:
我想在警报中显示一个切换按钮
.alert(
Text("Create"),
isPresented: $showCreate
) {
Button("Cancel", role: .cancel) {
}
Button("Enter") {
//some function
}
TextField("Name", text: $Name)
TextField("Key (Optional)", text: $Key)
.keyboardType(.numberPad)
Toggle("permanent", isOn: $isPermanent)
} message: {
Text("Please enter details.")
}
它在“取消”和“输入”按钮之间显示名为“永久”的切换按钮
答: 暂无答案
评论
UIDatePIcker
UIAlertController.Style
UISwitch