The ga-flutter-files VS Code extension helps streamline Flutter development by automatically generating common feature files for your Flutter applications. It adds a new context menu option to generate a set of feature-related files with predefined templates.
Features
Auto-generation of Flutter feature files: Automatically generates a set of files for a new feature, including:
*_route.dart
*_view.dart
*_vm.dart
Customizable templates: Predefined template contents for each file type.
Context menu integration: Right-click on the project directory or folder and select "Generate Flutter Feature" to quickly add new feature files to your project.
Example of the generated files:
stocks_detail_route.dart
stocks_detail_view.dart
stocks_detail_vm.dart
Tip: Use the extension to quickly start new feature development and maintain a consistent structure across your project.
Requirements
Visual Studio Code version 1.60.0 or higher
Flutter SDK must be installed and configured on your system.
Ensure that you have a Flutter project set up to use this extension effectively.
Extension Settings
This extension does not add any settings or configurations at the moment, but you can customize templates or add new features in future releases.
Known Issues
There are no known issues at this time. If you encounter any, please submit an issue via GitHub.
Release Notes
1.0.0
Initial release with basic functionality for generating feature files (*_route.dart, *_view.dart, *_vm.dart).
Following extension guidelines
Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.