You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
Dart
16 lines
436 B
Dart
import 'package:cidade_social/app/modules/splash/splash_page.dart';
|
|
import 'package:cidade_social/app/modules/splash/splash_store.dart';
|
|
import 'package:flutter_modular/flutter_modular.dart';
|
|
|
|
class SplashModule extends Module {
|
|
@override
|
|
final List<Bind> binds = [
|
|
Bind.singleton((i) => SplashStore()),
|
|
];
|
|
|
|
@override
|
|
final List<ModularRoute> routes = [
|
|
ChildRoute('/', child: (_, args) => const SplashPage()),
|
|
];
|
|
}
|