Adjust spacer flex in SpaceManagementCommunityStructure widget for improved layout consistency.

This commit is contained in:
Faris Armoush
2025-07-08 13:07:39 +03:00
parent 9e6b14737f
commit 9e0ea4ad6f

View File

@ -13,7 +13,7 @@ class SpaceManagementCommunityStructure extends StatelessWidget {
final selectionBloc = context.watch<CommunitiesTreeSelectionBloc>().state;
final selectedCommunity = selectionBloc.selectedCommunity;
final selectedSpace = selectionBloc.selectedSpace;
const spacer = Spacer(flex: 10);
const spacer = Spacer(flex: 6);
return Visibility(
visible: selectedCommunity!.spaces.isNotEmpty,
replacement: Row(