mirror of https://github.com/AMT-Cheif/drift.git
44 lines
917 B
Dart
44 lines
917 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
import 'screens/home.dart';
|
|
import 'screens/search.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
MyApp({Key? key}) : super(key: key);
|
|
|
|
final _router = GoRouter(
|
|
routes: [
|
|
GoRoute(
|
|
path: '/',
|
|
builder: (_, __) => const HomePage(),
|
|
routes: [
|
|
GoRoute(
|
|
path: 'search',
|
|
builder: (_, __) => const SearchPage(),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ProviderScope(
|
|
child: MaterialApp.router(
|
|
title: 'Drift Todos',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.amber,
|
|
typography: Typography.material2018(),
|
|
),
|
|
routerConfig: _router,
|
|
),
|
|
);
|
|
}
|
|
}
|