Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed May 9, 2024
1 parent 1b5cc74 commit d1d7a96
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions app/api/app.api
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ public final class com/github/skydoves/colorpickercomposedemo/ComposableSingleto
public final class com/github/skydoves/colorpickercomposedemo/ComposableSingletons$MainScreenKt {
public static final field INSTANCE Lcom/github/skydoves/colorpickercomposedemo/ComposableSingletons$MainScreenKt;
public static field lambda-1 Lkotlin/jvm/functions/Function2;
public static field lambda-2 Lkotlin/jvm/functions/Function3;
public static field lambda-3 Lkotlin/jvm/functions/Function3;
public static field lambda-2 Lkotlin/jvm/functions/Function4;
public static field lambda-3 Lkotlin/jvm/functions/Function4;
public static field lambda-4 Lkotlin/jvm/functions/Function3;
public fun <init> ()V
public final fun getLambda-1$app_release ()Lkotlin/jvm/functions/Function2;
public final fun getLambda-2$app_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda-3$app_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda-2$app_release ()Lkotlin/jvm/functions/Function4;
public final fun getLambda-3$app_release ()Lkotlin/jvm/functions/Function4;
public final fun getLambda-4$app_release ()Lkotlin/jvm/functions/Function3;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ fun ColumnScope.PhotoPickerIcon(

Box(
modifier = Modifier
.padding(horizontal = 16.dp)
.align(Alignment.End),
.padding(horizontal = 16.dp)
.align(Alignment.End),
) {
Image(
modifier = Modifier
.size(42.dp)
.clickable {
// Launch the picker with only one image selectable
photoPicker.launch(PhotoPicker.Args(PhotoPicker.Type.IMAGES_ONLY, 1))
},
.size(42.dp)
.clickable {
// Launch the picker with only one image selectable
photoPicker.launch(PhotoPicker.Args(PhotoPicker.Type.IMAGES_ONLY, 1))
},
imageVector = ImageVector.vectorResource(R.drawable.ic_gallery),
contentDescription = null,
)
Expand Down

0 comments on commit d1d7a96

Please sign in to comment.