Disable tap action on Community Structure when in specific states

This commit is contained in:
mohammad
2025-06-11 16:02:40 +03:00
parent 3c6f88b245
commit 1393a15eca

View File

@ -30,7 +30,10 @@ class CenterBodyWidget extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
GestureDetector( GestureDetector(
onTap: () { onTap: state is CommunityStructureState ||
state is CommunitySelectedState
? null
: () {
context context
.read<CenterBodyBloc>() .read<CenterBodyBloc>()
.add(CommunityStructureSelectedEvent()); .add(CommunityStructureSelectedEvent());