https://github.com/piotrfleury/flutter_start
Flutter wizard project creation inspired by spring boot starter
https://github.com/piotrfleury/flutter_start
Last synced: 3 months ago
JSON representation
Flutter wizard project creation inspired by spring boot starter
- Host: GitHub
- URL: https://github.com/piotrfleury/flutter_start
- Owner: PiotrFLEURY
- Created: 2022-07-16T13:52:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-23T13:15:53.000Z (almost 2 years ago)
- Last Synced: 2024-12-28T05:25:44.831Z (4 months ago)
- Language: Dart
- Size: 586 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_start
A Flutter wizard inspired by spring boot starter
## Purpose
Flutter can make many things for you. It can help you to build apps for multiple target platforms like android, ios, linux, macos and windows.
It can be hard for beginners to compose with all of these options.
This app generates for you `flutter create`, `flutter pub add` commands with few clicks:
* name your package
* name your app
* add a description
* select your dependencies
And voilà !
## Pub.dev API
We use the [pub.dev API](https://pub.dev/help/api) to fetch packages data.
### Get package completion
```bash
curl https://pub.dev/api/package-name-completion-data
```### Get single package informations
```bash
curl https://pub.dev/api/packages/:packageName
```### Get single package score informations
```bash
curl https://pub.dev/api/packages/:packageName/score
```## Generated sources
This project uses generated sources. Type the following command to refresh generated sources
```bash
flutter pub run build_runner build --delete-conflicting-outputs
```