This commit is contained in:
toly
2023-10-21 09:51:20 +08:00
parent d518b3c58a
commit 689e8d9fdb
49 changed files with 3006 additions and 64 deletions

View File

@@ -0,0 +1,39 @@
import 'package:flutter/material.dart';
import '../router/app_router_delegate.dart';
import 'app_navigation_rail.dart';
import 'background.dart';
import 'top_bar.dart';
class AppNavigation extends StatelessWidget {
const AppNavigation({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: [
// const Background(),
Row(
children: [
const AppNavigationRail(),
Expanded(
child: Column(
children: [
TopBar(),
Divider(height: 1,),
Expanded(
child: Router(
routerDelegate: router,
backButtonDispatcher: RootBackButtonDispatcher(),
),
),
],
),
),
],
),
],
),
);
}
}