removed debig colors

This commit is contained in:
hannathkadher
2024-11-11 21:02:47 +04:00
parent 01fb65ace6
commit fcd91305e5

View File

@ -133,7 +133,6 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
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<SpaceManagementPage> {
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<SpaceManagementPage> {
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<SpaceManagementPage> {
position: space.position,
isHovered: space.isHovered,
onPanUpdate: (int index, Offset delta) {
debugPrint("Check it works");
setState(() {
spaces[index].position += delta;
});