繁体   English   中英

为什么我的 flutter firebase 身份验证有问题?

[英]Why am I having issues with my flutter firebase authentification?

我的目标是在我的 firebase 数据上使用现有帐户登录,并在帐户不存在时显示异常...我遵循了一些教程以及官方 firebase 和 flutter 文档。 当我尝试使用不存在或现有的帐户登录时,用于在主屏幕中导航的登录按钮不起作用。

另外我有这个错误消息type 'String' is not a subtype of type 'TextEditingController' in type cast

我有这个 function 的两页代码

首先是我在 auth Provider Service Screen 中的代码:

import 'package:firebase_auth/firebase_auth.dart';

class AuthClass {
  FirebaseAuth auth = FirebaseAuth.instance;

  Future<String?> signIN({required String email, required String password}) async {
    try {
      await auth.signInWithEmailAndPassword(
          email: email,
          password: password,);
      return "Welcome";
    } on FirebaseAuthException catch (e) {
      if (e.code == 'user-not-found') {
        return 'No user found for that email.';
      } else if (e.code == 'wrong-password') {
        return 'Wrong password provided for that user.';
      }
    }
  }
}

这是我的身体登录屏幕代码:

import 'package:yona/WelcomePage/WelcomePage.dart';

class Body extends StatefulWidget {
  const Body({
    Key? key,
  }) : super(key: key);

  @override
  _BodyState createState() => _BodyState();
}

class _BodyState extends State<Body> {
  final GlobalKey<FormState> _formKey  = GlobalKey<FormState>();
  final auth = FirebaseAuth.instance;
  TextEditingController _email = TextEditingController();
  TextEditingController _password = TextEditingController();


  @override
  Widget build(BuildContext context) {
    Size size = MediaQuery
        .of(context)
        .size;
    return Background(
        child: Form(
        key: _formKey,
        child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: <Widget>[
        Text("LOGIN", style: TextStyle(
            color: Colors.white,
            fontWeight: FontWeight.bold,
            fontSize: 20)),
          Container(child: Image.asset('assets/ctlogo.png', height: 200),
          ),
       // Container
        RoundedInputField(
            hintText: "Your Email",
            onChanged: (value) {
              setState(() {
                _email = value.trim() as TextEditingController;
              });
            }
        ),
        RoundedPasswordField(
          onChanged: (value) {
            setState(() {
              _password = value.trim() as TextEditingController;
            });
          },
        ),
        Container(margin: EdgeInsets.symmetric(vertical: 20),
          width: 300,
          child: ClipRRect(
            borderRadius: BorderRadius.circular(29),
            // ignore: deprecated_member_use
            child: FlatButton(
              padding: EdgeInsets.symmetric(vertical: 14, horizontal: 40),
              color: SandYellow,
              onPressed: () {
                AuthClass()
                    .signIN(
                    email: _email.text.trim(), password: _password.text.trim())
                    .then((value) {
                  if (value == 'Welcome') {
                    Navigator.pushAndRemoveUntil(
                      context,
                      MaterialPageRoute(
                        builder: (context) => HomeScreen()),
                      (route) => false);
                    }
                  else{
                    ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(value!)));
                  }
                  }
                );
              },
              child: Text("LOGIN",
                  style: TextStyle(color: DarkTurquoise,
                    fontSize: 16,)
              ),
            ),
          ),
        ),
value.trim() as TextEditingController;

value 已经是 String,因此您不能将类型强制转换为 TextEditingController。 _email 变量应该是这样的字符串。

您可以将这部分as TextEditingController删除。 所以它会起作用。

编辑:

TextEditingController _email = TextEditingController();
TextEditingController _password = TextEditingController();

这些变量不应该是Controller,应该是String。

String _email = '';
String _password = '';

更改setState值时无需设置TextEditingController

onChanged: (value) {
  _email.text = value.trim();
}),

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM