Coaspe

Flutter/기술 - iOS, Android 폴더를 따로 생성하고 싶을 때 본문

Flutter/기술

Flutter/기술 - iOS, Android 폴더를 따로 생성하고 싶을 때

Coaspe 2022. 11. 8. 23:07

가끔 iOS, Android 폴더를 삭제하고 다시 생성해야할 때가 있습니다.

 

iOS 폴더만 생성하고 싶다면,

flutter create -i objc .
flutter create -i swift .

 

Android 폴더만 생성하고 싶다면,

flutter create -a java .
flutter create -a kotlin .
Comments