-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added snippet fl-screen (new screen with scaffold) #64
base: master
Are you sure you want to change the base?
Conversation
@@ -402,7 402,7 @@ | |||
"void main() => runApp(const MyApp());", | |||
"", | |||
"class MyApp extends StatelessWidget {", | |||
" const MyApp({super.key});", | |||
" const MyApp({Key? key}) : super(key: key);", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why go back to the old way?
@@ -430,7 430,7 @@ | |||
"void main() => runApp(const MyApp());", | |||
"", | |||
"class MyApp extends StatelessWidget {", | |||
" const MyApp({super.key});", | |||
" const MyApp({Key? key}) : super(key: key);", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, why ?
"", | ||
"class ${1:Home}Screen extends StatelessWidget {", | ||
" ", | ||
" const ${1:Home}Screen({Key? key}) : super(key: key);", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same :)
And don't forget to add your snippet to the README.md |
Added new snippet to create a screen with a Scaffold