Sign Up Form (Error)
main.dart import 'package:flutter/material.dart' ; import 'SignUpPage.dart' ; void main () => runApp ( MyApp ()); class MyApp extends StatelessWidget { const MyApp ({ Key ? key }) : super ( key : key ); @override Widget build ( BuildContext context ) { return MaterialApp ( title : 'User Details' , debugShowCheckedModeBanner : false , theme : ThemeData . dark (), home : SignUpPage (), ); } } SignUpPage.dart Error in strings and input import 'package:flutter/material.dart' ; import 'HomePage.dart' ; import 'https://flutlab.io/root/app/lib/HomePage.dart' ; class ...