小编Kea*_*Mlj的帖子

Swift:无法将任何视图的返回表达式转换为某些视图的返回类型

我不知道我有什么错误:无法将任何视图的返回表达式转换为某些视图的返回类型

我尝试了一些东西,但没有任何效果......而且我在网上找不到任何东西

感谢您的帮助...

    struct LoginView: View {

    @Binding var showCreateAccount: Bool

    @State private var email = ""
    @State private var password = ""
    @State private var formOffset: CGFloat = 0
    @State private var presentPasswordRecoverySheet = false


    var body: some View {

         VStack {

            VStack(spacing: 40) {

                Image("Logo")

                Text("Login").font(.title).bold()

                VStack {
                    RoundTextfield(value: self.$email, placeholder: "Email", icon: Image(systemName: "at"),
                                    onEditingChanged: { flag in withAnimation { self.formOffset = flag ? -150 : 0 } })

                    RoundTextfield(value: self.$password, placeholder: "Password", icon: Image(systemName: "lock"), isSecure: …
Run Code Online (Sandbox Code Playgroud)

swift swift5 swiftui

6
推荐指数
1
解决办法
4391
查看次数

标签 统计

swift ×1

swift5 ×1

swiftui ×1