We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d70ac8 commit e6863f5Copy full SHA for e6863f5
README.md
@@ -21,7 +21,7 @@ repositories {
21
```
22
23
```kotlin
24
-implementation("run.nabla:gallery-picker:1.2.0")
+implementation("run.nabla:gallery-picker:1.3.0")
25
26
27
## Screenshots
@@ -68,10 +68,15 @@ SideEffect {
68
pickPhotoLauncher.launch(
69
GalleryRequest.Builder()
70
.setTitle("Pick one")
71
+ .setFontFamily(R.font.open_sans)
72
.setTitleSize(25)
73
.setBackgroundColor(Color.White.value.toLong())
74
.setTitleColor(Color.Black.value.toLong())
75
.showExitAction(false)
76
+ .setItemsRoundedCornerSize(5)
77
+ .setGridColumns(3)
78
+ .setPermissionTitle("Access to your photos")
79
+ .setPermissionSecondaryActionTitle("Cancel")
80
.build()
81
)
82
}
0 commit comments