-
Flutter
-
Chrome for hot restart on web
-
Flutter Web is still in beta and isn't production ready yet.
-
Guide to set up Flutter for web :
Make sure that you have Flutter v1.12 or above Run the follwing commands to enable Flutter web support :
-
1.
flutter channel beta -
2.
flutter upgrade -
3.
flutter config --enable-web
- For development :
- Clone this repo
- Inside the repo, run
flutter run -d chrome
- For running the build :
- Extract th build.zip file from repo
- Serve files using any local server
- Opening web link(s) [ in /lib/screens/views.dart line:38] is currently implemented using
dart:htmlwhich is a web only implementation. Useurl_launcherto implement the same for other platforms.