Skip to content

Commit c7acffd

Browse files
style: Fix lint info
1 parent 36b5435 commit c7acffd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/lib/main.dart

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

2323
@override
24-
_MyHomePageState createState() => _MyHomePageState();
24+
MyHomePageState createState() => MyHomePageState();
2525
}
2626

27-
class _MyHomePageState extends State<MyHomePage> {
27+
class MyHomePageState extends State<MyHomePage> {
2828
final _formKey = GlobalKey<FormBuilderState>();
2929
bool _useCustomFileViewer = true;
3030

0 commit comments

Comments
 (0)