mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
56 lines
1.7 KiB
Dart
56 lines
1.7 KiB
Dart
|
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
||
|
|
||
|
import '../new_space.dart';
|
||
|
|
||
|
class NewSpaceView extends StatelessWidget {
|
||
|
final NewSpaceController controller;
|
||
|
|
||
|
const NewSpaceView(this.controller, {Key key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
leading: BackButton(),
|
||
|
title: Text(L10n.of(context).createNewSpace),
|
||
|
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).spaceName,
|
||
|
prefixIcon: Icon(Icons.people_outlined),
|
||
|
hintText: L10n.of(context).enterASpacepName),
|
||
|
),
|
||
|
),
|
||
|
SwitchListTile(
|
||
|
title: Text(L10n.of(context).spaceIsPublic),
|
||
|
value: controller.publicGroup,
|
||
|
onChanged: controller.setPublicGroup,
|
||
|
),
|
||
|
Expanded(
|
||
|
child: Image.asset('assets/private_chat_wallpaper.png'),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
floatingActionButton: FloatingActionButton(
|
||
|
onPressed: controller.submitAction,
|
||
|
child: Icon(Icons.arrow_forward_outlined),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|