2021-08-05 15:45:59 +02:00
|
|
|
# Flutter freeform gradient
|
2020-01-09 10:52:31 +01:00
|
|
|
|
|
|
|
This is a demonstration project to show usage of Flutter with Nix.
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
2021-08-05 15:25:35 +02:00
|
|
|
Enter in the `nix-shell`:
|
2020-01-09 10:52:31 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
nix-shell
|
|
|
|
```
|
|
|
|
|
|
|
|
After this, you can either build this project with:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
flutter build apk
|
|
|
|
```
|
|
|
|
|
|
|
|
Or run it:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
flutter run
|
|
|
|
```
|
|
|
|
|
|
|
|
If you have any issue, you can run `flutter doctor` to get a diagnostic and potential solution to fix your issues.
|