Pull-down student id gesture, salmon bar navigation, global state

This commit is contained in:
2022-09-07 13:34:03 -04:00
parent 95400d7ee2
commit 9b78ae40d0
13 changed files with 516 additions and 244 deletions

View File

@@ -0,0 +1,14 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';
class HeroEmptyRouterPage extends StatelessWidget {
const HeroEmptyRouterPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return HeroControllerScope(
controller: HeroController(),
child: const AutoRouter(),
);
}
}