mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
removed debig colors
This commit is contained in:
@ -133,7 +133,6 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
|
|||||||
return Expanded(
|
return Expanded(
|
||||||
child: Container(
|
child: Container(
|
||||||
decoration: const BoxDecoration(
|
decoration: const BoxDecoration(
|
||||||
color: ColorsManager.blackColor,
|
|
||||||
border: Border(
|
border: Border(
|
||||||
left: BorderSide(
|
left: BorderSide(
|
||||||
color: ColorsManager.whiteColors,
|
color: ColorsManager.whiteColors,
|
||||||
@ -148,7 +147,7 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
|
|||||||
padding: const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 27.0),
|
padding: const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 27.0),
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: ColorsManager.blackColor,
|
color: ColorsManager.whiteColors,
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
BoxShadow(
|
BoxShadow(
|
||||||
color: ColorsManager.shadowBlackColor, // Subtle shadow
|
color: ColorsManager.shadowBlackColor, // Subtle shadow
|
||||||
@ -191,8 +190,6 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
|
|||||||
child: Container(
|
child: Container(
|
||||||
width: canvasWidth, // Large width for free movement
|
width: canvasWidth, // Large width for free movement
|
||||||
height: canvasHeight, // Large height for free movement
|
height: canvasHeight, // Large height for free movement
|
||||||
|
|
||||||
color: ColorsManager.blue1, // Transparent background
|
|
||||||
child: spaces.isEmpty
|
child: spaces.isEmpty
|
||||||
? Center(
|
? Center(
|
||||||
child: AddSpaceButton(
|
child: AddSpaceButton(
|
||||||
@ -219,7 +216,6 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
|
|||||||
position: space.position,
|
position: space.position,
|
||||||
isHovered: space.isHovered,
|
isHovered: space.isHovered,
|
||||||
onPanUpdate: (int index, Offset delta) {
|
onPanUpdate: (int index, Offset delta) {
|
||||||
debugPrint("Check it works");
|
|
||||||
setState(() {
|
setState(() {
|
||||||
spaces[index].position += delta;
|
spaces[index].position += delta;
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user