Swiftpack.co - alessiorubicini/SFSymbolsPickerForSwiftUI as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by alessiorubicini.
alessiorubicini/SFSymbolsPickerForSwiftUI 1.0.6
A SwiftUI view for selecting SF symbols in your app
⭐️ 48
🕓 3 days ago
iOS macOS
.package(url: "https://github.com/alessiorubicini/SFSymbolsPickerForSwiftUI.git", from: "1.0.6")

SF Symbols Picker

SFSymbolsPicker is a simple and powerful SwiftUI picker that let you pick Apple's SF Symbols inside your iOS and macOS apps with an easy binding!

SF Symbols Picker

Changelog

1.0.6

  • Added the ability to specify a custom close button
  • Added support for macOS 11.0 and above

1.0.5

  • Optimized symbol loading performances
  • Improved search bar

1.0.4

  • Fixed visibility bug for SymbolPicker view

1.0.3

  • Added the ability to automatically dismiss the view when a symbol is selected
  • Added the ability to specify the view title and a label for the search bar
  • Added a toolbar icon to manually dismiss the view

1.0.2

The way the package loads SF symbols has radically changed. Now the symbols are read at run-time directly by the system, so the users can access the latest symbols added by Apple as soon as they update their devices. Special thanks to mackoj for the suggestion in implementing this solution.

Usage

Here's a short usage example. You can find the full code in UsageExample.swift.

@State private var icon = "star.fill"
@State private var isPresented = false
    
var body: some View {
    NavigationView {
        VStack {
            Button("Select a symbol") {
                isPresented.toggle()
            }

            Image(systemName: icon).font(.title3)

                .sheet(isPresented: $isPresented, content: {
                    SymbolsPicker(selection: $icon, title: "Pick a symbol", autoDismiss: true)
                }).padding()

        }
        .navigationTitle("SF Symbols Picker")
    }
}

With custom button:

...

    .sheet(isPresented: $isPresented, content: {
        SymbolsPicker(selection: $icon, title: "Pick a symbol", autoDismiss: true) {
            // Your custom view...
            // For example:
            Text("Close!")
        }
    }).padding()
...

Installation

Required:

  • iOS 14.0 or above
  • macOS 11.0 or above
  • Xcode 12.0 or above

In Xcode go to File -> Add Package Dependencies... and paste in the repo's url: https://github.com/alessiorubicini/SFSymbolsPicker. Then choose the main branch or the version you desire.

License

Copyright 2024 (©) Alessio Rubicini.

The license for this repository is MIT License.

Please see the LICENSE file for full reference

GitHub

link
Stars: 48
Last commit: 3 days ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

1.0.6
3 days ago
  • Added the ability to specify a custom close button
  • Added support for macOS 11.0 and above

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