Skip to content

Commit

Permalink
[tools] Fix plugin_ffi template lint violation (#115356)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcharkes authored Nov 15, 2022
1 parent 1f28f99 commit c37f255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter_tools/templates/app/lib/main.dart.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class MyApp extends StatefulWidget {
const MyApp({super.key});

@override
_MyAppState createState() => _MyAppState();
State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
Expand Down

0 comments on commit c37f255

Please sign in to comment.