Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
Bug fix.
  • Loading branch information
esatgozcu committed Jul 30, 2023
1 parent 24a2f05 commit 7bfbc78
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.esatgozcu.rollingnumber.numberWheel

import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.size
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
Expand All @@ -12,7 +13,7 @@ import com.esatgozcu.rollingnumber.RollingNumberVM
fun SingleNumberElement(number: Int, size: Size, vm: RollingNumberVM){
Text(
text = "$number",
modifier = Modifier.size(size.width.dp,size.height.dp),
modifier = Modifier.height(size.height.dp),
style = vm.textStyle
)
}

0 comments on commit 7bfbc78

Please sign in to comment.