17 lines
347 B
Dart
17 lines
347 B
Dart
|
|
import 'package:flutter_terminal/page/home/binding.dart';
|
|
import 'package:flutter_terminal/page/home/view.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class RouteConfig {
|
|
static const String home = "/";
|
|
|
|
static final List<GetPage> getPages = [
|
|
GetPage(
|
|
name: home,
|
|
page: () => HomePage(),
|
|
binding: HomeBinding(),
|
|
)
|
|
];
|
|
}
|