I'm working on a project with Flutter and I accidently chose ios but I only need to work with Android, and now after my project has grown up, now I can't recreate a new project, so how can I delete ios from my current project, safely.
Nothing to worry about, just delete the ios
directory, that's it!
In Flutter, every specific platform has a dedicated directory (ios, android, web, macos, windows, linux). Each directory uses the same code inside lib
(Flutter, app-related code). Meaning, if you want to delete a specific platform, just delete a dedicated platform directory.
P.S. if you are using version control for your project, there is nothing to worry about - you can always revert your changes.