skip to Main Content

Flutter Login With Database SQLite

I a creating a Login page with SQLite, but in the file UserModel in directory lib/models, there is this error: This is the code: class UserModel { String _name; String _email; String _password; UserModel(this._name, this._email, this._password); //Receiving data from server…

VIEW QUESTION

I'm new to flutter and I want to add another text, How can I do it?

class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( theme: ThemeData( primarySwatch: Colors.lightBlue, scaffoldBackgroundColor: const Color(0xFFb4c8ea), ), home: const MyText(), ); } } class MyText extends StatelessWidget { const MyText({super.key}); @override Widget build(BuildContext context) {…

VIEW QUESTION
Back To Top
Search