Home > OS >  Flutter File_picker MissingPluginException
Flutter File_picker MissingPluginException

Time:10-27

I'm trying to install file picker except that when my button is clicked or the file picker function is assigned, I have this error that appears: "MissingPluginException (MissingPluginException(No implementation found for method any on channel miguelruivo.flutter.plugins.filepicker))"

I couldn't find anything about it

CodePudding user response:

image_picker and file_picker don't work well with the ios simulator. You have to use a real device instead.

CodePudding user response:

in your project path use this command

flutter clean

  • Related