목록dll (2)
달팽이웰니스
1. js 패키지 설치pubspec.yaml에 다음과 같이 js 패키지를 추가합니다dependencies: flutter: sdk: flutter js: ^0.6.3추가하고 패키지를 설치합니다.$ flutter pub get3.web 폴더 구조index.html 에 websocket.js 파일 추가 합니다.```html windows_flutter_web_testpage ``` 4.사용$ flutter doctor //채널 확인$ flutter channel stable //채널 변경$ flutter upgrade //채널 업그레이드$ flutter config --enable-web //웹 앱 사용 활성화$ flutter devices //사용 가능한 디바이스 확인5.실행하기// run..
1. 패키지 설치pubspec.yaml 에 다음과 같이 패키지를 추가합니다.dependencies: flutter: sdk: flutter ffi: ^2.0.1 # 최신 버전 확인 후 입력 charset_converter: ^2.0.1 # cp949 # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.6 intl: ^0.18.0 dev_dependencies: flutter_test: sdk: flutter ffi: ^2.0.1 # 최신 버전 확인 후 입력 charse..