Skip to content

Commit c37f255

Browse files
authored
[tools] Fix plugin_ffi template lint violation (flutter#115356)
Closes: flutter#115347
1 parent 1f28f99 commit c37f255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_tools/templates/app/lib/main.dart.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class MyApp extends StatefulWidget {
208208
const MyApp({super.key});
209209

210210
@override
211-
_MyAppState createState() => _MyAppState();
211+
State<MyApp> createState() => _MyAppState();
212212
}
213213

214214
class _MyAppState extends State<MyApp> {

0 commit comments

Comments
 (0)