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.
18 lines
462 B
18 lines
462 B
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,
|
|
);
|
|
});
|
|
}
|
|
}
|