Flex Layout Align widgets in rows and columns This lesson is available for PRO members or as a single course purchase. Sign-in and choose a plan below. *Enrollment provides full access to this course (and updates) for life. Or Signup for Unlimited PRO Access 📼 Login to Watch 👈 Gestures Stack 👉 Example Code file_type_dartlang main.dart class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( color: Colors.blue, padding: EdgeInsets.all(16), child: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ Icon(Icons.cake, color: Colors.white, size: 50,), Icon(Icons.cake, color: Colors.white, size: 100,), Icon(Icons.cake, color: Colors.white, size: 200,), ], ) ) ), ); } } Chapters Intro 👶 1 Resources free How to be successful in this course 👶 2 Flutter Overview What makes Flutter so Special? 👶 3 Installation and Setup Install Flutter and native IDEs 👶 4 Firebase setup Add Firebase to Flutter 👶 5 VS Code free Maximize the power of your IDE for Flutter Widgets 🐦 6 Widgets Stateless vs Stateful 🐦 7 Platform Checking Material vs Cupertino Widgets 🐦 8 Material App & Scaffold High-level UI widgets 🐦 9 Single Widget Layout Align and position individual widgets 🐦 10 Box Decoration Make containers look awesome 🐦 11 Text Working with the Text widget 🐦 12 Gestures Detect user interaction within your app 🐦 13 Flex Layout Align widgets in rows and columns 🐦 14 Stack Position widgets on a Stack 🐦 15 Scroll ListView and GridView for scrollable widgets 🐦 16 Animated Widgets Use AnimatedContainer for automatic motion Flutter Concepts 🎨 17 Themes Styles, Themes, and InheritedWidget 🚎 18 Navigation Screen routing with a navigation stack 🌊 19 Async Widgets Handle Streams and Futures 🌊 20 State Management Handle shared Firebase data with Provider Let's Build an App 🎫 21 App Tour free Take a closer look at the app that we're building 🍱 22 Project Organization How to structure a complex Flutter app 🔑 23 User Authentication Sign in to the application and access user data 🐼 24 User Profile Display user data on the profile screen 🐼 25 Login Screen Build a UI for multiple login methods 💽 26 Database Model Firestore document structure for quizzes. 🔥 27 Firestore Basics Read and secure data with Firestore 💥 28 Advanced Firestore Data Organization and Deserialization 📳 29 Topics Screen Use GridView to list Firestore data 😎 30 Hero Animation Create beautiful transitions between screens 🖌️ 31 Animated Progress Bar Build an animated progress bar from scratch ✔️ 32 Quiz State Management Advanced usage of the Provider package ✔️ 33 Quiz PageView Advanced usage of the PageView widget Release 🎉 34 Google Play Android release walkthrough 🎉 35 Apple App Store iOS release walkthrough