Skip to content

Commit f8b1ada

Browse files
committed
Fix issue
1 parent 6feacf4 commit f8b1ada

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/lib/home_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
22
import 'package:form_builder_validators/form_builder_validators.dart';
33

44
class HomePage extends StatefulWidget {
5-
const HomePage({Key? key}) : super(key: key);
5+
const HomePage({super.key});
66

77
@override
88
HomePageState createState() => HomePageState();

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ void main() {
1010
}
1111

1212
class MyApp extends StatelessWidget {
13-
const MyApp({Key? key}) : super(key: key);
13+
const MyApp({super.key});
1414

1515
@override
1616
Widget build(BuildContext context) {

0 commit comments

Comments
 (0)