We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
currently the snippets don't seem to leverage flutter 3 features
e.g.:statelessW
statelessW
class name extends StatelessWidget { const name({super.key}); @override Widget build(BuildContext context) { return Container(); } }
class name extends StatelessWidget { const name({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Container(); } }
The text was updated successfully, but these errors were encountered:
Implement compatibility with different major Flutter versions will be nice (related with #41) . Maybe a property config
Sorry, something went wrong.
Plugin is now updated for v3 => https://marketplace.visualstudio.com/items?itemName=Nash.awesome-flutter-snippets
Nash0x7E2
No branches or pull requests
currently the snippets don't seem to leverage flutter 3 features
e.g.:
statelessW
The text was updated successfully, but these errors were encountered: