Skip to content

Commit

Permalink
add prefix to custom material icons (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmr authored Jan 12, 2024
1 parent b810217 commit df1f517
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fun InputBarCode(
imeAction: ImeAction = ImeAction.Next,
modifier: Modifier = Modifier,
) {
val actionButtonIconVector = mutableStateOf(if (inputText.isNullOrEmpty()) "barcode_scanner" else "barcode")
val actionButtonIconVector = mutableStateOf(if (inputText.isNullOrEmpty()) "material_barcode_scanner" else "material_barcode")
BasicTextInput(
title = title,
state = state,
Expand Down

0 comments on commit df1f517

Please sign in to comment.