728x90
플러터로 웹개발하기
https://flutter-ko.dev/docs/get-started/web
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.
728x90