navigation cleanup

This commit is contained in:
Christien Rioux 2024-04-05 22:03:04 -04:00
parent 5da68b2d94
commit b3e9cbd4f3
32 changed files with 475 additions and 314 deletions

View file

@ -23,7 +23,9 @@ class _SplashState extends State<Splash> {
}
@override
Widget build(BuildContext context) => DecoratedBox(
Widget build(BuildContext context) => PopScope(
canPop: false,
child: DecoratedBox(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
@ -49,5 +51,5 @@ class _SplashState extends State<Splash> {
'assets/images/title.svg',
))
]))),
);
));
}