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
class SignInScreen extends StatelessWidget { | |
static const routeName = '/SignIn'; | |
final ScrollController scrollController = ScrollController(); | |
final GlobalKey<ScaffoldState> scaffoldKey = GlobalKey<ScaffoldState>(); | |
SignInScreen({super.key}); | |
@override |