skip to Main Content

Remove extra space in drawer header – Flutter

I want achieve this drawer header But mine have lot of space.How to remove the extra space in drawer header? Code class AppDrawer extends HookWidget { @override Widget build(BuildContext context) { return Drawer( child: ListView( padding: EdgeInsets.zero, children: <Widget>[ _createHeader(),…

VIEW QUESTION

Firebase authentication stream not working – Flutter

In this Project I'm using firebase authentication and for changing homepage of the MaterialApp a StreamBuilder is implemented at MaterialApp's home section but its not working as expected. home of the MaterialApp, home: StreamBuilder( stream: FirebaseAuth.instance.authStateChanges(), builder: (context, snapshot) {…

VIEW QUESTION
Back To Top
Search