diff --git a/lib/pages/spaces_management/view/spaces_management_page.dart b/lib/pages/spaces_management/view/spaces_management_page.dart index 8f3d5329..92d59271 100644 --- a/lib/pages/spaces_management/view/spaces_management_page.dart +++ b/lib/pages/spaces_management/view/spaces_management_page.dart @@ -133,7 +133,6 @@ class SpaceManagementPageState extends State { return Expanded( child: Container( decoration: const BoxDecoration( - color: ColorsManager.blackColor, border: Border( left: BorderSide( color: ColorsManager.whiteColors, @@ -148,7 +147,7 @@ class SpaceManagementPageState extends State { padding: const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 27.0), width: double.infinity, decoration: BoxDecoration( - color: ColorsManager.blackColor, + color: ColorsManager.whiteColors, boxShadow: [ BoxShadow( color: ColorsManager.shadowBlackColor, // Subtle shadow @@ -191,8 +190,6 @@ class SpaceManagementPageState extends State { child: Container( width: canvasWidth, // Large width for free movement height: canvasHeight, // Large height for free movement - - color: ColorsManager.blue1, // Transparent background child: spaces.isEmpty ? Center( child: AddSpaceButton( @@ -219,7 +216,6 @@ class SpaceManagementPageState extends State { position: space.position, isHovered: space.isHovered, onPanUpdate: (int index, Offset delta) { - debugPrint("Check it works"); setState(() { spaces[index].position += delta; });