fix: page transition fill color should be the same as surface

This commit is contained in:
Alberto Ponces 2022-09-01 09:07:40 +01:00
parent c7d9ca961a
commit 0d14db41e1

View File

@ -100,6 +100,7 @@ class Navigation extends StatelessWidget {
return FadeThroughTransition(
animation: animation,
secondaryAnimation: secondaryAnimation,
fillColor: Theme.of(context).colorScheme.surface,
child: child,
);
},