feat: New chat design

This commit is contained in:
Krille Fear 2021-11-13 20:37:51 +01:00
parent 080942d36c
commit af1103ee0a
3 changed files with 2 additions and 12 deletions

View file

@ -14,9 +14,7 @@ class NewGroupView extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: const BackButton(),
title: Text(L10n.of(context).createNewGroup),
elevation: 0,
),
body: MaxWidthBody(
child: Column(

View file

@ -26,7 +26,6 @@ class NewPrivateChatView extends StatelessWidget {
leading: const BackButton(),
title: Text(L10n.of(context).newChat),
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
elevation: 0,
actions: [
TextButton(
onPressed: () => VRouter.of(context).to('/newgroup'),
@ -38,7 +37,8 @@ class NewPrivateChatView extends StatelessWidget {
],
),
body: MaxWidthBody(
child: ListView(
withScrolling: true,
child: Column(
children: [
Container(
margin: const EdgeInsets.all(_qrCodePadding),
@ -64,15 +64,9 @@ class NewPrivateChatView extends StatelessWidget {
),
),
),
const Divider(),
ListTile(
subtitle: Text(L10n.of(context).createNewChatExplaination),
trailing: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(Icons.info_outline_rounded),
),
),
const Divider(),
Padding(
padding: const EdgeInsets.all(12),
child: Form(

View file

@ -14,9 +14,7 @@ class NewSpaceView extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: const BackButton(),
title: Text(L10n.of(context).createNewSpace),
elevation: 0,
),
body: MaxWidthBody(
child: Column(