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
371 B
18 lines
371 B
import 'package:fluro/fluro.dart';
|
|
import 'package:dating_touchme_app/router/router_handles.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
class Routes{
|
|
|
|
|
|
static void configureRoutes(FluroRouter router) {
|
|
router.notFoundHandler = Handler(
|
|
handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
|
|
return;
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
}
|