Simple Color Picker

API Language License

A simple color picker library of material colors

gif

Gradle

Add below lines to your root build.gradle file

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

And add the below dependency to your module build.gradle file.

implementation 'com.github.zaferertas:simplecolorpicker:1.1'

Usage

// Kotlin
SimpleColorPicker.Builder(this)
    .setTitle("Select Color") // Optional
    .setListener(object : ColorPickerListener {
        override fun onColorSelected(color: String) {
            // Use selected color
        }
    })
    .build()
    .show()

// Java
new SimpleColorPicker.Builder(this)
    .setTitle("Select Color") // Optional
    .setListener(new ColorPickerListener() {
        @Override
        public void onColorSelected(@NonNull String color) {
            // Use selected color
        }
    })
    .build()
    .show();

License

Copyright 2023, Zafer Ertas

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

GitHub

View Github