simple content for create todo page

This commit is contained in:
SomnusVeritas
2023-11-08 11:12:06 +01:00
parent 72ab307b42
commit 1f543aec04

View File

@@ -9,8 +9,46 @@ class CreateTodoPage extends StatefulWidget {
}
class _CreateTodoPageState extends State<CreateTodoPage> {
String _title = '';
String _description = '';
@override
Widget build(BuildContext context) {
return const Scaffold();
return Scaffold(
floatingActionButton: _title.isNotEmpty
? FloatingActionButton(
onPressed: () {},
child: const Icon(Icons.save),
)
: null,
appBar: AppBar(),
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Column(
children: [
TextField(
decoration: const InputDecoration(label: Text('Title')),
textInputAction: TextInputAction.next,
onTapOutside: (event) => FocusScope.of(context).unfocus(),
onChanged: (value) {
if (value.isEmpty || (value.isNotEmpty && _title.isEmpty)) {
setState(() {
_title = value;
});
} else {
_title = value;
}
},
),
TextField(
minLines: 3,
maxLines: 5,
decoration: const InputDecoration(label: Text('Description')),
onChanged: (value) => _description = value,
),
],
),
),
);
}
}