Add wallpapers to start new chat pages
This commit is contained in:
parent
061d76bbab
commit
ad73ba775a
5 changed files with 9 additions and 0 deletions
|
|
@ -95,6 +95,9 @@ class _NewGroupState extends State<_NewGroup> {
|
|||
value: publicGroup,
|
||||
onChanged: (bool b) => setState(() => publicGroup = b),
|
||||
),
|
||||
Expanded(
|
||||
child: Image.asset("assets/new_group_wallpaper.png"),
|
||||
),
|
||||
],
|
||||
),
|
||||
floatingActionButton: FloatingActionButton(
|
||||
|
|
|
|||
|
|
@ -228,6 +228,10 @@ class _NewPrivateChatState extends State<_NewPrivateChat> {
|
|||
),
|
||||
),
|
||||
Divider(height: 1),
|
||||
if (foundProfiles.isEmpty || correctMxId)
|
||||
Expanded(
|
||||
child: Image.asset("assets/private_chat_wallpaper.png"),
|
||||
),
|
||||
],
|
||||
),
|
||||
floatingActionButton: FloatingActionButton(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue