Home > OS >  Cannot create a flutter app using flutter create
Cannot create a flutter app using flutter create

Time:09-29

When i run flutter create I getenter image description here

Im not sure why that png is a sticking point everything above it are in the same parent folders. Has anyone run into this issue?The Programming Flutter folder seems like it is being set as read only: enter image description here

But when i uncheck the Read only box and click apply when i open it again its set to Read Only again. But thats the very parent folder and other files seem to copy across fine before the error above.

Anyone have any idea why its failing?

CodePudding user response:

Have you recently updated your Flutter version, or are you running on an older version? As per this thread, it seems to have been fixed somewhere in 2020.

CodePudding user response:

It is your operating system not allowing Flutter to write files. You can either delete that folder and create that again or change permissions. Uncheck that 'read-only' checkbox shown in picture. You can learn more about handling permissions here.

  • Related