Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hayderux/electron-flutter

A minimal electron application with flutter & dart
https://github.com/hayderux/electron-flutter

dart electron flutter

Last synced: about 2 months ago
JSON representation

A minimal electron application with flutter & dart

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
```