What is Kige?
Kige – is an image-picker for android written for Jetpack Compose. Its give you ability to choose image from your gallery. It uses Modal Bottom Sheet State which added in Jetpack Compose Material 3 1.2.0-alpha02
Project in develop!
Maded with ♥ by Kiko
Implementation
First of all, you need to add jitpack repo (in project settings.gradle)
For Groovy:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
For Kotlin DSL:
repositories {
...
maven(url="https://jitpack.io")
}
And add library in build.gradle dependency
For Groovy:
implementation 'com.github.BadKiko:kige:version'
For Kotlin DSL:
implementation("com.github.BadKiko:kige:version")
Usage
For get imagee-picker you can execute in @Composable function:
KigePicker { image ->
...
}