About 400 results
Open links in new tab
  1. Navigation and routing - Flutter

    Oct 30, 2025 · Flutter provides a complete system for navigating between screens and handling deep links. Small applications without complex deep linking can use Navigator, while apps with …

  2. Flutter navigation cookbook

    Oct 28, 2025 · Set up app links for Android Learn how to set up app links for an Android application built with Flutter.

  3. Navigate to a new screen and back - Flutter

    Oct 28, 2025 · In iOS, a route is equivalent to a ViewController. In Flutter, a route is just a widget. This recipe uses the Navigator to navigate to a new route. The next few sections show how to …

  4. Navigate with named routes - Flutter

    Oct 28, 2025 · With the widgets and routes in place, trigger navigation by using the Navigator.pushNamed() method. This tells Flutter to build the widget defined in the routes …

  5. Pass arguments to a named route - Flutter

    Oct 28, 2025 · Unless stated otherwise, the documentation on this site reflects Flutter 3.38.1. Page last updated on 2025-10-28. View source or report an issue.

  6. Send data to a new screen - Flutter

    Oct 30, 2025 · With Flutter's default styling, you're good to go without sweating about things that you'd like to do later on!

  7. Create a nested navigation flow - Flutter

    Oct 30, 2025 · This delegation of navigation facilitates greater local control, which is generally preferable when developing software. The following animation shows the app's behavior: In …

  8. Return data from a screen - Flutter

    Oct 28, 2025 · Unless stated otherwise, the documentation on this site reflects Flutter 3.38.1. Page last updated on 2025-10-28. View source or report an issue.

  9. Deep linking - Flutter

    Oct 30, 2025 · Flutter supports deep linking on iOS, Android, and the web. Opening a URL displays that screen in your app. With the following steps, you can launch and display routes …

  10. Configuring the URL strategy on the web - Flutter

    Oct 16, 2024 · To configure Flutter to use the path instead, use the usePathUrlStrategy function provided by the flutter_web_plugins library, which is part of the Flutter SDK.