mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Can change group description
This commit is contained in:
@ -121,7 +121,19 @@ class _GroupSettingsScreenState extends SafeState<GroupSettingsScreen> {
|
||||
_groupSettings.url = s;
|
||||
_updateSettings();
|
||||
},
|
||||
)
|
||||
),
|
||||
|
||||
// Group description
|
||||
TextEditSettingsTile(
|
||||
title: tr("Group description (optional)"),
|
||||
currValue: _groupSettings.description,
|
||||
maxLines: 3,
|
||||
maxLength: 255,
|
||||
allowEmptyValues: true,
|
||||
onChanged: (s) {
|
||||
_groupSettings.description = s;
|
||||
_updateSettings();
|
||||
}),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user