April 2020
Intermediate to advanced
380 pages
9h 24m
English
Inside main.dart, we create Stateless Widget, App, and override the build() method as follows:
@override Widget build(BuildContext context) { return new MaterialApp( title: 'Firebase Authentication', debugShowCheckedModeBanner: false, theme: new ThemeData( primarySwatch: Colors.blue, ), home: new MainScreen(auth: new Auth())); }
The method returns MaterialApp, providing a title, a theme, and from home screen.
Read now
Unlock full access