Make sure the permissions controller is displayed if the camera permi…
…ssions are not determined. https://github.com/hyperoslo/Gallery/issues/141
Possible something similar should be done with Photos permissions. Should we really show the permissions controller if the user has said no to photos and yes to the camera?
We are having this issue crop up as well, would love the fix to be included
The permissions controller fix is not working for me. You have your code below this line
let useCamera = Permission.Camera.needsPermission && Permission.Camera.status == .authorized
Which seems to make your code never return nil
if useCamera, Permission.Camera.status == .notDetermined { return nil }
Added the showStatusBar separately.
What I hear from @neodave is that this proposed fix doesn't work. Any clues what might work?