mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
removed debig colors
This commit is contained in:
@ -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;
|
||||
});
|
||||
|
Reference in New Issue
Block a user