Flutter Desktop Apps: Getting Started

Mar 28 2023 · Dart 2.19, Flutter 3.7, Android Studio 2021.3.1 or higher, Visual Studo Code 1.7.4 or higher

Part 1: Flutter Desktop Apps

09. Macintosh Entitlements

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 08. Challenge: Add Delete List Menu Next episode: 10. Exporting Data

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Xcode

Many Desktop apps deal with files from the file system. If you want the user to be able to save their data to their local computer, you will need to provide a way to do that. One of the best ways to do that is through a file picker. This is a plugin that provides access to the local file system and allows the user to choose the file to open or where to save the file.

Android Studio

Open up Android Studio and open up DebugProfile.entitlements from the macOS -> Runner folder.

<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.exception.files.absolute-path.read-write</key>
<true/>