Skip to content

Commit

Permalink
Merge pull request #843 from NUmeroAndDev/fix_aceess_item_height
Browse files Browse the repository at this point in the history
Fixed access item height
  • Loading branch information
takahirom authored Oct 4, 2022
2 parents 59bb7e4 + caf226d commit de63d99
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.rememberScrollState
Expand Down Expand Up @@ -266,7 +266,7 @@ private fun AuxiliaryInformationRow(
Row(
modifier = modifier
.fillMaxWidth()
.height(56.dp)
.heightIn(min = 56.dp)
.clickable { onClick() },
verticalAlignment = Alignment.CenterVertically
) {
Expand Down

0 comments on commit de63d99

Please sign in to comment.