From da14ed6bd7e4f98407884fab096a13bbd5791927 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Sat, 8 Oct 2022 23:12:59 +0200 Subject: [PATCH] Added scaffold background color to screens with tabs --- lib/screens/clients/clients.dart | 1 + lib/screens/filters/filters.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/screens/clients/clients.dart b/lib/screens/clients/clients.dart index 451d2f8..c009969 100644 --- a/lib/screens/clients/clients.dart +++ b/lib/screens/clients/clients.dart @@ -125,6 +125,7 @@ class _ClientsWidgetState extends State with TickerProviderStateM }), body: Container( decoration: BoxDecoration( + color: Theme.of(context).scaffoldBackgroundColor, border: Border( top: BorderSide( color: Theme.of(context).brightness == Brightness.light diff --git a/lib/screens/filters/filters.dart b/lib/screens/filters/filters.dart index 40e04f4..ae5fa84 100644 --- a/lib/screens/filters/filters.dart +++ b/lib/screens/filters/filters.dart @@ -114,6 +114,7 @@ class _FiltersWidgetState extends State with TickerProviderStateM }), body: Container( decoration: BoxDecoration( + color: Theme.of(context).scaffoldBackgroundColor, border: Border( top: BorderSide( color: Theme.of(context).brightness == Brightness.light