-
Notifications
You must be signed in to change notification settings - Fork 0
/
Diary_Writing_v3.dart
153 lines (138 loc) · 5.06 KB
/
Diary_Writing_v3.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import 'package:flutter/material.dart';
import 'Analysis_Today.dart';
import 'package:date_format/date_format.dart';
import 'package:timer_builder/timer_builder.dart';
import 'ML_service.dart';
class Textinput {
final String description;
Textinput(this.description);
}
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
appBarTheme: AppBarTheme(
color: Colors.lightBlue.shade900,
),
),
home: FormScreen(title: 'Dear My Diary'),
);
}
}
class FormScreen extends StatefulWidget {
const FormScreen({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<FormScreen> createState() => _FormScreenState();
}
class _FormScreenState extends State<FormScreen> {
// Create a global key that uniquely identifies the Form widget and allows validation of the form.
// Note: This is a GlobalKey<FormState>, not a GlobalKey<MyCustomFormState>.
final _formKey = GlobalKey<FormState>();
String _title = '';
String _detail = '';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Form(
key: _formKey,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.all(20),
child: Column(
children: [
Text(
formatDate(DateTime.now(), ['20',yy, '-', M, '-', d]),
style: const TextStyle(
fontSize: 25.0,
),
),
TextFormField(
autovalidateMode: AutovalidateMode.always,
decoration: const InputDecoration(
icon: Icon(Icons.auto_awesome_outlined),
hintText: 'How is Today',
labelText: 'Title',
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(20)),
borderSide: BorderSide(
color: Colors.blueGrey,
)
)
),
onSaved: (value) {
setState(() {
_title = value as String;
});
},
),
],
)),
Padding(
padding: const EdgeInsets.fromLTRB(20, 10, 20, 40),
child: Column(
children: [
TextFormField(
maxLines: 2,
autovalidateMode: AutovalidateMode.always,
decoration: const InputDecoration(
icon: Icon(Icons.article),
hintText: 'Tell me your day',
labelText: 'Today Diary',
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(20)),
borderSide: BorderSide(
color: Colors.blueGrey,
)
)
),
onSaved: (value) {
setState(() {
_detail = value as String;
});
},
),
ElevatedButton(
onPressed: () async{
// Validate returns true if the form is valid, or false otherwise.
if (_formKey.currentState!.validate()) {
_formKey.currentState!.save();
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text("오늘의 일기작성 완료!")),
);
}
/*Navigator.push(
context,
MaterialPageRoute(builder: (context) => MainRoute())
);*/
final result = await Navigator.push(
context,
MaterialPageRoute(builder: (context) => MainRoute(_detail))
);
},
child: const Text('End of Diary'),
style: ElevatedButton.styleFrom(
primary: Colors.lightBlue.shade900,
),
),
],
)),
],
),
),
);
}
}