Swiftpack.co - Nef10/FileSelectorView as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Nef10.
Nef10/FileSelectorView v1.0.0
A small Swift UI Package with one View to select a file
⭐️ 0
🕓 5 weeks ago
macOS
.package(url: "https://github.com/Nef10/FileSelectorView.git", from: "v1.0.0")

FileSelectorView

CI Status Documentation percentage License: MIT Latest version platforms supported: macOS SPM compatible

A small Swift UI Package with one View to select a file.

Usage

Simple example:

@State private var fileURL: URL?
...
var body: some View {
    ...
    FileSelectorView(allowedFileTypes: ["txt", "md"], url: self.$fileURL)
    ...
}

With a label in the body:

var body: some View {
    ...
     HStack(alignment: .firstTextBaseline) {
        Text("Document:")
        FileSelectorView(allowedFileTypes: ["txt", "md"], url: self.$fileURL)
    }
    ...
}

Do disable a button (for example the continue button in a form) until a file is selected:

    Button("Continue") { ... }
    .disabled(fileURL == nil)

You can check out the complete documentation here.

Screenshots

No file selected File selected File selected with label
Screen Shot 2020-07-13 at 18 58 30 Screen Shot 2020-07-13 at 18 59 38 Screen Shot 2020-07-13 at 18 59 45

Include

The library supports the Swift Package Manger, so simply add it to the Swift Packages tab of your Xcode project.

GitHub

link
Stars: 0
Last commit: 5 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

1.0.0 First release
3 years ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics