From 0d14db41e19ff1e9bf4a3906c745e04122eaeae7 Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Thu, 1 Sep 2022 09:07:40 +0100 Subject: [PATCH] fix: page transition fill color should be the same as surface --- lib/main.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/main.dart b/lib/main.dart index 68e6f18d..74cd91e8 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -100,6 +100,7 @@ class Navigation extends StatelessWidget { return FadeThroughTransition( animation: animation, secondaryAnimation: secondaryAnimation, + fillColor: Theme.of(context).colorScheme.surface, child: child, ); },