Swiftpack.co - franklynw/PresentableColorPicker as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by franklynw.
franklynw/PresentableColorPicker 1.0.5
SwiftUI ColorPicker which can be presented programmatically (rather than via a ColorPicker button)
⭐️ 5
🕓 3 years ago
iOS
.package(url: "https://github.com/franklynw/PresentableColorPicker.git", from: "1.0.5")

PresentableColorPicker

A Colour Picker pretty much identical to Apple's ColorPicker (in that it uses the UIColorPickerViewController), except that this one can be presented in the way common to sheets, etc, with a bound 'isPresented' boolean var.

Installation

Swift Package Manager

In Xcode:

Example

NB: All examples require import PresentableColorPicker at the top of the source file

It can be used directly as a view, which offers the full range of customisation options -

var body: some View {
    
    PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented) {
        viewModel.paintColor = $0
    }
    .backgroundColor(viewModel.backgroundColor)
    .disableDismissOnSelection
}

or as a modifier, which presents the default colour picker (with no customisation options) -

var body: some View {

    MyView {
    
    }
    .presentableColorPicker(isPresented: $isStandaloneColorPickerPresented, Binding: $viewModel.paintColor)
}

Both of these methods allow you to specify either a binding to a Color var, or use a 'colorSelected' closure which is invoked when the colour is picked.

Set the picker's title

PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented, selected: $viewModel.paintColor)
    .title("Pick a colour")

If not used, the title will default to localised "Colour" (ie, if you have "Colour" in your Localizable.strings file, it will use that, otherwise just "Colour")

Disable the automatic "dismiss on selection" functionality

This might be necessary if you have (eg) a preview visible above the picker, where you can see how your selected colour looks - the user can then decide when to dismiss the picker

PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented, selected: $viewModel.paintColor)
    .disableDismissOnSelection

Set the picker's background colour

PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented, selected: $viewModel.paintColor)
    .backgroundColor(.lightGray)

Set the height of the picker as either a fixed height or as a proportion of the containing view's height

PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented, selected: $viewModel.paintColor)
    .height(.fixed(400))

or

PresentableColorPicker(isPresented: $isStandaloneColorPickerPresented, selected: $viewModel.paintColor)
    .height(.proportional(0.6))

Additionally...

There are two NotificationCenter notifications which are sent, which are defined as static vars on Notification.Name -

  • presentableColorPickerAppeared ("PresentableColorPickerAppearedNotification")
  • presentableColorPickerDisappeared ("PresentableColorPickerDisappearedNotification")

These are sent as their names suggest, and there is no additional userInfo

Dependencies

Requires HalfASheet, which is linked. Take a look at it here

Licence

PresentableColorPicker is available under the MIT licence

GitHub

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

Dependencies

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