How to add flutter into Android and IOS projects?



First, create an open existing android project then open the terminal and trying to add flutter and android both in the same folder


1. then terminal using cd..(exiting from the project) come with the same folder
2.run this command flutter create -t module demoflutter 
3.enter in the created module using cd demoflutter 
4.enter into the flutter's cd .android folder
5.again enter one more command ./gradlew flutter:assembleDebug

For better understanding follow this

Comments