Nikolas Rimikis
1 year ago
3 changed files with 46 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||||
|
import 'package:flutter/widgets.dart'; |
||||||
|
import 'package:go_router/go_router.dart'; |
||||||
|
|
||||||
|
/// [RouteData] for the initial page of an app. |
||||||
|
/// |
||||||
|
/// Subclasses must override one of [build] or [redirect]. |
||||||
|
abstract class NeonAppRoute extends GoRouteData { |
||||||
|
const NeonAppRoute(); |
||||||
|
|
||||||
|
@override |
||||||
|
Page<void> buildPage(final BuildContext context, final GoRouterState state) => NoTransitionPage( |
||||||
|
child: build(context, state), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
const appsRoutePrefix = '/apps/'; |
Loading…
Reference in new issue