Switched from using Text to SelectableText in CreateCommunityDialog.

This commit is contained in:
Faris Armoush
2025-06-23 10:13:30 +03:00
parent 4bdb487094
commit ada7daf179

View File

@ -9,7 +9,7 @@ abstract final class SpaceManagementCommunityDialogHelper {
showDialog<void>(
context: context,
builder: (_) => CreateCommunityDialog(
title: const Text('Community Name'),
title: const SelectableText('Community Name'),
onCreateCommunity: (community) {
context.read<CommunitiesBloc>().add(
InsertCommunity(community),