본문 바로가기

개발 이야기/플러터 개발

플러터로 웹개발하기

728x90

플러터로 웹개발하기

https://flutter-ko.dev/docs/get-started/web

 

Building a web application with Flutter

Instructions for creating a Flutter app for the web.

flutter-ko.dev

Summary

Here are the short and sweet instructions to get started. To add support to an existing project and assuming that you have the flutter tool installed, run the following commands in a terminal from the top of the project package:

 

$ flutter channel master

$ flutter upgrade

$ flutter config --enable-web

$ cd <into project directory>

$ flutter create . $ flutter run -d chrome

 

To generate a release build:

$ flutter build web

 

The rest of this page breaks this process down into individual steps.