Merge branch 'main' into FluffyChat_JaWeee

This commit is contained in:
Jeremy 2024-12-31 10:46:57 -05:00 committed by GitHub
commit fc8ad51380
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 3037 additions and 1904 deletions

View file

@ -25,7 +25,7 @@ class NewGroupController extends State<NewGroup> {
TextEditingController nameController = TextEditingController();
bool publicGroup = false;
bool groupCanBeFound = true;
bool groupCanBeFound = false;
Uint8List? avatar;
@ -43,7 +43,8 @@ class NewGroupController extends State<NewGroup> {
void setCreateGroupType(Set<CreateGroupType> b) =>
setState(() => _createGroupType = b.single);
void setPublicGroup(bool b) => setState(() => publicGroup = b);
void setPublicGroup(bool b) =>
setState(() => publicGroup = groupCanBeFound = b);
void setGroupCanBeFound(bool b) => setState(() => groupCanBeFound = b);