diff --git a/lib/view/pages/more/roomplan/roomplan.dart b/lib/view/pages/more/roomplan/roomplan.dart index 25d3fc2..8871371 100644 --- a/lib/view/pages/more/roomplan/roomplan.dart +++ b/lib/view/pages/more/roomplan/roomplan.dart @@ -10,13 +10,12 @@ class Roomplan extends StatelessWidget { appBar: AppBar( title: const Text("Raumplan"), ), - backgroundColor: Colors.white, body: PhotoView( imageProvider: Image.asset("assets/img/raumplan.jpg").image, minScale: 0.5, maxScale: 2.0, - backgroundDecoration: BoxDecoration(color: Theme.of(context).colorScheme.surface), - ) + backgroundDecoration: BoxDecoration(color: Theme.of(context).colorScheme.background), + ), ); } }