You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
461 B
17 lines
461 B
4 years ago
|
import 'package:fluro/fluro.dart';
|
||
|
import 'package:flutter/material.dart' hide Router;
|
||
|
import 'page_routers.dart';
|
||
|
|
||
|
class RouterInit {
|
||
|
static final router = Router();
|
||
|
static final GlobalKey<NavigatorState> navigatorKey = GlobalKey();
|
||
|
static setupRouter() {
|
||
|
pageRoutes.forEach((path, handler) {
|
||
|
router.define(
|
||
|
path.toString(),
|
||
|
handler: handler.getHandler(),
|
||
|
transitionType: TransitionType.cupertino,
|
||
|
);
|
||
|
});
|
||
|
}
|
||
|
}
|