This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bool isLoading = false; | |
| bool isVerified = false; | |
| FirebaseAuth? auth = FirebaseAuth.instance; | |
| TextEditingController pNumber = TextEditingController(text: ""); | |
| TextEditingController otp = TextEditingController(text: ""); | |
| String verification = ''; | |
| Future getFirebaseOtp() async { | |
| isLoading = true; | |
| log(pNumber.text); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:google_fonts/google_fonts.dart'; | |
| import 'package:sizer/sizer.dart'; | |
| class CustomText extends StatelessWidget { | |
| int? styleType = 0; | |
| double? scaleFactor = 1.0; | |
| bool? softWrap; | |
| final String text; | |
| final TextDirection? textDirection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://pub.dev/packages/page_transition | |
| https://pub.dev/packages/scroll_to_index | |
| https://pub.dev/packages/formz | |
| https://pub.dev/packages/flutter_slidable |