get_mvc

Last updated:

0 purchases

get_mvc Image
get_mvc Images
Add to Cart

Description:

get mvc

GET_MCV #
A Larvel artisan command-line interface (CLI) tool for generating Model-View-Controller (MVC) files in Flutter projects using GetX.
Installation #
To use get_mcv, you need to have Dart installed.
You can install it via Flutter
or Dart SDK.
Once Dart is installed, you can install get_mcv globally using the following command:
flutter pub global activate get_mcv
copied to clipboard
Make sure to add the Dart SDK's bin directory to your system's PATH to access the installed binaries.
Project Structure #
project/
├── lib/app/
│ ├── controllers/
│ │ ├── auth.dart
│ │ └── example.dart
│ ├── models/
│ │ └── example.dart
│ ├── services/
│ │ └── example.dart
│ └── views/
│ ├── example.dart
│ ├── login.dart
│ └── signup.dart
├── pubspec.yaml
└── README.md
copied to clipboard
Usage #
get_mcv provides commands to generate various MVC files in your Flutter project:
Create a New Project #
get_mcv new --n <project_name> --org <organisation_name>
copied to clipboard
Create a New File #
get_mcv create -t <type> -n <name>
copied to clipboard
Replace <type> with the file type (model, view, controller, service) and <name> with the file name (without extension).
Generate Authentication Files #
get_mcv create --auth
copied to clipboard
This command generates authentication-related files including an authentication controller, login view, and signup view.
Help #
get_mcv help
copied to clipboard
Displays usage information and lists all available commands.
Contributing #
Contributions are welcome! If you encounter any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.
License #
This project is licensed under the MIT License.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.