2021-05-22 08:57:49 +02:00
|
|
|
import 'package:fluffychat/pages/new_group.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
|
2021-04-13 16:28:27 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
|
2021-05-22 09:13:47 +02:00
|
|
|
class NewGroupView extends StatelessWidget {
|
2021-04-13 16:28:27 +02:00
|
|
|
final NewGroupController controller;
|
|
|
|
|
2021-05-22 09:13:47 +02:00
|
|
|
const NewGroupView(this.controller, {Key key}) : super(key: key);
|
2021-04-13 16:28:27 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
leading: BackButton(),
|
|
|
|
title: Text(L10n.of(context).createNewGroup),
|
|
|
|
elevation: 0,
|
|
|
|
),
|
|
|
|
body: MaxWidthBody(
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(12.0),
|
|
|
|
child: TextField(
|
|
|
|
controller: controller.controller,
|
|
|
|
autofocus: true,
|
|
|
|
autocorrect: false,
|
|
|
|
textInputAction: TextInputAction.go,
|
|
|
|
onSubmitted: controller.submitAction,
|
|
|
|
decoration: InputDecoration(
|
|
|
|
labelText: L10n.of(context).optionalGroupName,
|
|
|
|
prefixIcon: Icon(Icons.people_outlined),
|
|
|
|
hintText: L10n.of(context).enterAGroupName),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SwitchListTile(
|
|
|
|
title: Text(L10n.of(context).groupIsPublic),
|
|
|
|
value: controller.publicGroup,
|
|
|
|
onChanged: controller.setPublicGroup,
|
|
|
|
),
|
|
|
|
Expanded(
|
2021-06-20 12:57:46 +02:00
|
|
|
child: Image.asset('assets/private_chat_wallpaper.png'),
|
2021-04-13 16:28:27 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
floatingActionButton: FloatingActionButton(
|
|
|
|
onPressed: controller.submitAction,
|
|
|
|
child: Icon(Icons.arrow_forward_outlined),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|