2024-05-09 09:46:23 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2024-05-12 00:08:54 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
// save button + speichern durch enter
|
|
|
|
|
|
|
|
class AddHabitPopup extends StatefulWidget {
|
2024-05-12 00:08:54 +02:00
|
|
|
//final Function? onHabitAdded;
|
|
|
|
//final Habit todo;
|
|
|
|
final void Function(String, String) onSubmit;
|
2024-05-09 17:37:41 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
@override
|
|
|
|
_AddHabitPopupState createState() => _AddHabitPopupState();
|
2024-05-12 00:08:54 +02:00
|
|
|
|
|
|
|
const AddHabitPopup({
|
2024-05-12 22:55:54 +02:00
|
|
|
super.key,
|
2024-05-12 00:08:54 +02:00
|
|
|
//this.todo,
|
|
|
|
required this.onSubmit,
|
2024-05-12 22:55:54 +02:00
|
|
|
});
|
2024-05-12 00:08:54 +02:00
|
|
|
}
|
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
|
|
|
|
class _AddHabitPopupState extends State<AddHabitPopup> {
|
2024-05-12 00:08:54 +02:00
|
|
|
final titleController = TextEditingController();
|
|
|
|
final subtitleController = TextEditingController();
|
2024-05-09 17:37:41 +02:00
|
|
|
|
2024-05-12 00:08:54 +02:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2024-05-09 17:37:41 +02:00
|
|
|
|
2024-05-12 22:55:54 +02:00
|
|
|
titleController.text = "";
|
|
|
|
subtitleController.text = "";
|
2024-05-12 00:08:54 +02:00
|
|
|
}
|
2024-05-09 17:37:41 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
final _formKey = GlobalKey<FormState>();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
title: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.close, color: Colors.red),
|
2024-05-12 00:08:54 +02:00
|
|
|
onPressed: () => Navigator.pop(context),
|
2024-05-09 09:46:23 +02:00
|
|
|
),
|
2024-05-12 17:56:36 +02:00
|
|
|
const Expanded(
|
|
|
|
child: Text(
|
|
|
|
'Add task',
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
2024-05-09 09:46:23 +02:00
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
content: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
const Divider(thickness: 3),
|
|
|
|
|
|
|
|
Form(
|
|
|
|
key: _formKey,
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
TextFormField(
|
2024-05-12 00:08:54 +02:00
|
|
|
autofocus: true,
|
|
|
|
controller: titleController,
|
2024-05-09 09:46:23 +02:00
|
|
|
decoration: const InputDecoration(
|
|
|
|
icon: Icon(Icons.title),
|
|
|
|
labelText: "Title",
|
|
|
|
hintText: "Enter task title",
|
|
|
|
),
|
2024-05-12 00:08:54 +02:00
|
|
|
validator: (value) =>
|
2024-05-12 17:56:36 +02:00
|
|
|
value != null && value.isEmpty ? "Please enter a title" : null,
|
2024-05-09 09:46:23 +02:00
|
|
|
),
|
2024-05-12 00:08:54 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
TextFormField(
|
2024-05-12 00:08:54 +02:00
|
|
|
controller: subtitleController,
|
2024-05-09 09:46:23 +02:00
|
|
|
decoration: const InputDecoration(
|
|
|
|
icon: Icon(Icons.description),
|
|
|
|
labelText: "Description",
|
|
|
|
hintText: "Describe how you plan to achieve your goal",
|
2024-05-12 17:56:36 +02:00
|
|
|
),
|
|
|
|
validator: (value) =>
|
|
|
|
value != null && value.isEmpty ? "Please enter a subtitle" : null,
|
|
|
|
),
|
|
|
|
],
|
2024-05-12 00:08:54 +02:00
|
|
|
),
|
|
|
|
),
|
2024-05-12 22:55:54 +02:00
|
|
|
const SizedBox(height: 10,),
|
|
|
|
|
|
|
|
Center(
|
|
|
|
child: ElevatedButton(
|
|
|
|
onPressed: () {
|
|
|
|
if (_formKey.currentState!.validate()) {
|
|
|
|
widget.onSubmit(titleController.text, subtitleController.text);
|
|
|
|
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
const SnackBar(
|
|
|
|
content: Text('Form saved!'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
child: const Text('Save'),
|
|
|
|
),
|
|
|
|
),
|
2024-05-09 17:37:41 +02:00
|
|
|
|
2024-05-12 00:08:54 +02:00
|
|
|
|
2024-05-09 09:46:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2024-05-12 17:56:36 +02:00
|
|
|
|