English
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.
- 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:AndroidModule-PickYou:$PickYouVersion'
- Kotlin
implementation("com.github.XayahSuSuSu:AndroidModule-PickYou:$PickYouVersion")
- Launch anywhere
val launcher = PickYouLauncher()
launcher.launch(this) { path ->
// Code here.
}
- Customization
See PickYouLauncher
See sample