Description
As a developer I can create a flutter_plugin template using the CLI and pass which platforms I dont want using the --<platform_name> false option. This works as expected but the example generated for the plugin will still contain all platforms.
Steps To Reproduce
- Run
very_good create my_plugin -t flutter_plugin --ios false
- Check the
my_plugin/my_plugin/example directory, it will contain an iOS dir.
Expected Behavior
That the generated example only has the platforms that I require for my plugin.