English
Android file picker module with the style of Material You.
Use this module to pick files/directories easily.
- Write in compose
- Easy to import and use.
- Highly customizable.
- Support for single/multiple selection.
- Monet enabled.
- Enable JitPack in
settings.gradle
/settings.gradle.kts
- Groovy
repositories {
// ......
maven { url 'https://jitpack.io' }
}
- Kotlin
repositories {
// ......
maven("https://jitpack.io")
}
- Implementation
- Groovy
implementation 'com.github.xayahsususu:libpickyou:$PickYouVersion'
- Kotlin
implementation("com.github.xayahsususu:libpickyou:$PickYouVersion")
- Launch anywhere
val launcher = PickYouLauncher()
launcher.launch(context) { path ->
// Code here.
}
- Customization
See PickYouLauncher
See sample