Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 335 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 335 Bytes

colorpicker-view

Swift + SwiftUI ColorPickerView

A basic color picker view for use in iOS mobile development, the code is provided without any warranty.

Example

VStack {
    // COLOR PICKER
    ColorPickerView(selectedColor: $selectedColor)
        .padding(.horizontal, 5)
        .padding(.bottom, 50)
    
}