Unverified Commit f0f02aca authored by Markus Aksli's avatar Markus Aksli Committed by GitHub

reset and added back changes (#65460)

parent a0b6538d
...@@ -528,11 +528,13 @@ class WidgetsApp extends StatefulWidget { ...@@ -528,11 +528,13 @@ class WidgetsApp extends StatefulWidget {
/// Defaults to [Window.defaultRouteName], which may be overridden by the code /// Defaults to [Window.defaultRouteName], which may be overridden by the code
/// that launched the application. /// that launched the application.
/// ///
/// If the route name starts with a slash and has multiple slashes in it, then /// If the route name starts with a slash, then it is treated as a "deep link",
/// it is treated as a "deep link", and before this route is pushed, the /// and before this route is pushed, the routes leading to this one are pushed
/// routes leading to this one are pushed also. For example, if the route was /// also. For example, if the route was `/a/b/c`, then the app would start
/// `/a/b/c`, then the app would start with the three routes `/a`, `/a/b`, and /// with the four routes `/`, `/a`, `/a/b`, and `/a/b/c` loaded, in that order.
/// `/a/b/c` loaded, in that order. /// Even if the route was just `/a`, the app would start with `/` and `/a`
/// loaded. You can use the [onGenerateInitialRoutes] property to override
/// this behavior.
/// ///
/// Intermediate routes aren't required to exist. In the example above, `/a` /// Intermediate routes aren't required to exist. In the example above, `/a`
/// and `/a/b` could be skipped if they have no matching route. But `/a/b/c` is /// and `/a/b` could be skipped if they have no matching route. But `/a/b/c` is
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment