Skip to content

Commit 2031dd3

Browse files
build: update dependencies
- build with flutter 3.7 - fix lint infos
1 parent 5a63e14 commit 2031dd3

File tree

5 files changed

+299
-168
lines changed

5 files changed

+299
-168
lines changed

example/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ class MyHomePage extends StatefulWidget {
3232
const MyHomePage({Key? key}) : super(key: key);
3333

3434
@override
35-
_MyHomePageState createState() => _MyHomePageState();
35+
MyHomePageState createState() => MyHomePageState();
3636
}
3737

38-
class _MyHomePageState extends State<MyHomePage> {
38+
class MyHomePageState extends State<MyHomePage> {
3939
final _formKey = GlobalKey<FormBuilderState>();
4040

4141
void _onChanged(dynamic val) => debugPrint(val.toString());

0 commit comments

Comments
 (0)