whwh656 / FilePicker

An easy-to-use cross platform file picker for SwiftUI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FilePicker

A cross platform file picker for SwiftUI.

License

The FilePicker package implements a SwiftUI view that can be used in both iOS and macOS. The FilePicker provides a Button that presents a platform-native file picker that is a modern way for use in SwiftUI.

Installation

Add the FilePicker package to your Xcode project using the package manager. Import FilePicker to your file.

If you are using the package with macOS, ensure that you grant appropriate File Access permissions for User Selected File under Signing & Capabilities (on the macOS target)

Example Usage

import SwiftUI
import FilePicker

struct DebugView: View {
    
    var body: some View {
        HStack {
            //  
        
            // Use custom content for the button label
            FilePicker(types: [.plainText], allowMultiple: true) { urls in
                print("selected \(urls.count) files")
            } label: {
                HStack {
                    Image(systemName: "doc.on.doc")
                    Text("Pick Files")
                }
            }
            
            FilePicker(types: [.plainText], allowMultiple: false, title: "pick single file") { urls in
                print("selected \(urls.count) files")
            }
            
        }
    }
    
}

Licence

Distributed under the MIT license. See LICENSE for more information.

About

An easy-to-use cross platform file picker for SwiftUI.

License:MIT License


Languages

Language:Swift 100.0%