https://github.com/appimagecrafters/appimage-builder-flutter-example
Hello World flutter project pack as AppImage
https://github.com/appimagecrafters/appimage-builder-flutter-example
appimage appimage-builder flutter flutter-app flutter-examples
Last synced: about 1 month ago
JSON representation
Hello World flutter project pack as AppImage
- Host: GitHub
- URL: https://github.com/appimagecrafters/appimage-builder-flutter-example
- Owner: AppImageCrafters
- License: mit
- Created: 2021-03-11T00:16:14.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-26T16:44:38.000Z (about 4 years ago)
- Last Synced: 2025-03-28T04:41:47.503Z (about 2 months ago)
- Topics: appimage, appimage-builder, flutter, flutter-app, flutter-examples
- Language: CMake
- Homepage:
- Size: 96.7 KB
- Stars: 9
- Watchers: 0
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# appimage-builder-flutter-example
This project aims to ilustrate how to pack a [flutter](https://flutter.dev) project into an AppImage. Also, includes instructions for setting un a CI workflow using Github Actions.
## Requirementes
- Ubuntu (18.04 or higher)
- [flutter](https://flutter.dev/docs/get-started/install/linux)
- [appimage-builder](https://appimage-builder.readthedocs.io/en/latest/intro/install.html)## Build
```
git clone https://github.com/AppImageCrafters/appimage-builder-flutter-example.git
cd appimage-builder-flutter-example# enable flutter desktop support
flutter channel dev
flutter upgrade
flutter config --enable-linux-desktop# build the flutter app
flutter build linux# build the AppImage
appimage-builder --skip-test
```