1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can change group description

This commit is contained in:
2020-05-01 20:30:26 +02:00
parent 971210e7e8
commit cc08ed0232
3 changed files with 15 additions and 3 deletions

View File

@ -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();
}),
],
);
}