From ae412cc4073f05bd7e5beaea6f6ba44221a20b57 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Thu, 23 Jan 2025 16:55:28 -0600 Subject: [PATCH] Fix SimplePage background color variable (#232) --- lib/components/SimplePage.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/SimplePage.dart b/lib/components/SimplePage.dart index cc00d2e..7d25d16 100644 --- a/lib/components/SimplePage.dart +++ b/lib/components/SimplePage.dart @@ -98,7 +98,7 @@ class SimplePage extends StatelessWidget { } return PlatformScaffold( - backgroundColor: Theme.of(context).canvasColor, + backgroundColor: Theme.of(context).scaffoldBackgroundColor, appBar: PlatformAppBar( title: title, leading: leadingAction != null ? leadingAction : Utils.leadingBackWidget(context),