Dev Portfolio Portfolio built using flutter web.
To view a live demo,Click Here.
- Andoid
- Windows
- linux
- MacOS
- IOs
Run the following commands to use the latest version of the Flutter SDK from the beta channel and enable web support:
flutter channel betaflutter upgradeflutter config --enable-webTo create a new app for use with web support (in addition to mobile support), run the following commands, substituting myap with the name of your project:
flutter create myapp cd myappTo serve your app from localhost in Chrome, enter the following from the top of the package:
flutter run -d chromeTo add web support to an existing project, run the following command in a terminal from the root project directory:
flutter create .
## To serve your app from localhost in Chrome, enter the following from the top of the package:
``` bash
flutter run -d chrome
### Build
Run the following command to generate a release build:
```bash
flutter build webFor help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.