Fixed issue in loading space model

This commit is contained in:
hannathkadher
2025-02-04 11:36:26 +04:00
parent 5e5f127a4b
commit d1d570b40f
3 changed files with 12 additions and 5 deletions

View File

@ -43,6 +43,7 @@ class SpaceManagementPageState extends State<SpaceManagementPage> {
rightBody: const NavigateHomeGridView(),
scaffoldBody: BlocBuilder<SpaceManagementBloc, SpaceManagementState>(
builder: (context, state) {
print("current state is ${state}");
if (state is SpaceManagementLoading) {
return const Center(child: CircularProgressIndicator());
} else if (state is BlankState) {