Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hayderux/electron-flutter
A minimal electron application with flutter & dart
https://github.com/hayderux/electron-flutter
dart electron flutter
Last synced: 3 months ago
JSON representation
A minimal electron application with flutter & dart
- Host: GitHub
- URL: https://github.com/hayderux/electron-flutter
- Owner: hayderux
- License: mit
- Created: 2019-08-11T10:26:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-04T02:02:00.000Z (over 3 years ago)
- Last Synced: 2024-05-05T22:33:48.800Z (6 months ago)
- Topics: dart, electron, flutter
- Language: JavaScript
- Homepage:
- Size: 1.81 MB
- Stars: 117
- Watchers: 6
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-quick-start-flutter
A minimal Electron application with flutter & dart![Screenshot](screenshots/main.png)
## To Use
```bash
# Clone this repository
git clone https://github.com/hayderux/electron-flutter
# Go into the repository
cd electron-flutter
#install flutter dependencies
flutter pub get
# Install dependencies
npm install
# Run the app
npm run dev
```
## Release
To build for production, first run `npm run build`.The output directory, `build` contains a `package.json` pointing to the built
application, and can be run as follows:```bash
cd build
npm install
npm start
```
## Package
The output directory's package manifest, build/package.json, includes electron-packager, and therefore can be packaged for distribution on Windows, MacOS, and Linux.to build for the host platform run:
```
npm run build
```
To build for all platforms, run :```
npm run package
```