UsefulLinks
Computer Science
Mobile Application Development
Flutter Framework
1. Introduction to Flutter and Dart
2. Setting Up the Development Environment
3. Flutter Fundamentals: Widgets
4. Building Layouts in Flutter
5. Handling User Input and Forms
6. Displaying Collections and Lists
7. Navigation and Routing
8. State Management
9. Asynchronous Programming
10. Working with Data and Backend Services
11. Assets, Images, and Fonts
12. Advanced UI and Animations
13. Interacting with Native Platform Features
14. Testing, Debugging, and Performance
15. Building and Deploying Applications
16. Flutter Ecosystem and Continuous Learning
7.
Navigation and Routing
7.1.
Basic Navigation with `Navigator`
7.1.1.
Navigator.push()
7.1.2.
Navigator.pop()
7.1.3.
Navigation Stack
7.1.4.
Route Transitions
7.2.
Passing Data to a New Screen
7.2.1.
Constructor Arguments
7.2.2.
Route Arguments
7.2.3.
RouteSettings
7.3.
Returning Data from a Screen
7.3.1.
Using `pop()` with Results
7.3.2.
Handling Return Values
7.4.
Named Routes
7.4.1.
Defining Routes in `MaterialApp`
7.4.2.
Navigating with `Navigator.pushNamed()`
7.4.3.
Route Settings and Arguments
7.4.4.
Initial Route
7.5.
Advanced Navigation
7.5.1.
Navigator.pushReplacement()
7.5.2.
Navigator.pushAndRemoveUntil()
7.5.3.
Navigator.popUntil()
7.5.4.
Modal Routes
7.6.
Advanced Routing Solutions
7.6.1.
The `onGenerateRoute` Property
7.6.1.1.
Dynamic Route Generation
7.6.1.2.
Route Guards
7.6.2.
Introduction to Navigator 2.0
7.6.2.1.
Pages API
7.6.2.2.
RouterDelegate and RouteInformationParser
7.6.2.3.
RouteInformationProvider
7.6.3.
Using Packages for Routing
7.6.3.1.
go_router
7.6.3.2.
auto_route
7.6.3.3.
beamer
7.7.
Deep Linking
7.7.1.
URL Handling
7.7.2.
Custom URL Schemes
7.7.3.
Universal Links
Previous
6. Displaying Collections and Lists
Go to top
Next
8. State Management