In this post, I will list down some of the key commands (cheatsheet) which can help one build and release web application (app) using Flutter.
In order for the following commands to work, follow the steps given below:
Once flutter is set up and a template project is created, execute the following one-time commands for setting up Flutter web development environment. These commands can be run from anywhere in a terminal.
flutter channel beta
flutter upgrade
flutter config --enable-web
Once the above commands executed, go to the home / root folder of Flutter project and execute the following commands. The details of these commands can be found on this page titled as building web application using flutter.
flutter run -d chrome
flutter build web
The command given below will populate build/web
directory with built files, including an assets
directory, which need to be served together. One should note that the minification is handled when one creates a release build.
flutter run --release
# The following command can also be used
flutter build web
The release build will create the following files / assets in build/web project folder. Take these files and put it in web root folder for any web server including Tomcat, Python, Firebase or cloud hosting (AWS, Google, Azure). More details can be found on this page related to deploying flutter app on web
/build/web
assets
AssetManifest.json
FontManifest.json
LICENSE
fonts
MaterialIcons-Regular.ttf
<other font files>
<image files>
index.html
main.dart.js
main.dart.js.map
flutter create .
Use the following command to embed flutter app in any webpage. URL is the link for flutter web page.
<iframe src="URL"></iframe>
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…