Skip to content

Commit

Permalink
Modified UI element
Browse files Browse the repository at this point in the history
  • Loading branch information
pmartinbTEF committed Sep 22, 2023
1 parent aa0414e commit aa97cc1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.res.dimensionResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.style.TextOverflow
import androidx.compose.ui.text.toUpperCase
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.tooling.preview.PreviewParameter
import androidx.compose.ui.tooling.preview.PreviewParameterProvider
Expand Down Expand Up @@ -175,7 +176,7 @@ private fun ButtonContent(
it.size.height.toDp()
}
},
text = text,
text = text.toUpperCase(),
color = textColor,
style = size.textStyle,
maxLines = 1,
Expand Down

0 comments on commit aa97cc1

Please sign in to comment.