[here is the issue (https://i.stack.imgur.com/D0zPF.png)

I have tried to run flutter clean and flutter pub get but no changes I don't know what causing this issue. I will appreciate your help guys.

1

There are 1 best solutions below

0
On

Could you try this please:


chooseFile() async {
    final chosenFile = await ImagePicker().pickImage(source: ImageSource.gallery);
    
    if(chosenFile != null) {
      return chosenFile.path;
    }
  }

If it does not work could you please show me the code you've tried before and explain the desired results.