美文网首页
SwiftUI—如何切换部分表单项目的可见性

SwiftUI—如何切换部分表单项目的可见性

作者: anny_4243 | 来源:发表于2020-07-16 13:58 被阅读0次

    原文链接:https://github.com/fzhlee/SwiftUI-Guide#-%E7%AC%AC16%E8%8A%82form-showhide-

    本节课演示如何切换部分表单的可见性,从而实现根据用户的选择,给用户提供不同的表单项目。

    示例代码:

    struct ContentView : View {
    
        @State var showingVisible = false //用来标识是否隐藏表单
        @State var userName = ""
        @State var password = ""
    
        var body: some View {
            NavigationView {
                Form {
                    Toggle(isOn: $showingVisible.animation()) { //使用该视图显示或隐藏表单
                        if(showingVisible){
                            Text("Hide Form")
                        }
                        else{
                            Text("Show Form")
                        }
                    }
                    
                    if(showingVisible)
                    {
                        Section(header: Text("Please enter your information:")) {
                            
                            TextField("Username", text: $userName)
                            SecureField("Password", text: $password)
                        }
                    }
                }.navigationBarTitle(Text("Profiles"))
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:SwiftUI—如何切换部分表单项目的可见性

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