skip to Main Content

Flutter web throwing error when use firebase

I have created new project in flutter and added firebase using flutterfire configure command after that i have initialized my project like below void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform); runApp(const MyApp()); } then it started throwing error which…

VIEW QUESTION

Change color of maxletters in textfiled flutter

How to change color of this? and position other place.( like center of top ) Code: TextField( maxLength: 25, textAlign: TextAlign.center, obscureText: obscuretext, decoration: InputDecoration( contentPadding: const EdgeInsets.all(8.0), border: InputBorder.none, iconColor: Colors.grey.shade800, hintText: hintText, hintStyle: TextStyle( fontWeight: FontWeight.w600, fontSize: 16,…

VIEW QUESTION
Back To Top
Search