File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/commonMain/kotlin/io/github/faridsolgi/share Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ plugins {
1616}
1717
1818group = " io.github.faridsolgi"
19- version = " 0.0.13-beta2 "
19+ version = " 0.0.13-beta3 "
2020
2121kotlin {
2222 jvm()
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import androidx.compose.foundation.background
44import androidx.compose.foundation.layout.Box
55import androidx.compose.foundation.layout.heightIn
66import androidx.compose.foundation.layout.padding
7+ import androidx.compose.foundation.layout.requiredWidth
78import androidx.compose.foundation.layout.requiredWidthIn
89import androidx.compose.runtime.Composable
910import androidx.compose.runtime.CompositionLocalProvider
@@ -127,9 +128,7 @@ fun PersianDatePickerPopup(
127128 onDismissRequest = onDismissRequest, popupPositionProvider = dropdownPopupPositioner
128129 ) {
129130 Box (
130- modifier = modifier.requiredWidthIn(min = PersianDatePickerTokens .ContainerWidth ,
131- max= PersianDatePickerTokens .ContainerWidthMax
132- )
131+ modifier = modifier.requiredWidth( PersianDatePickerTokens .ContainerWidth )
133132 .heightIn(min= PersianDatePickerTokens .ContainerHeight ,max = PersianDatePickerTokens .ContainerHeightMax )
134133 .background(colors.containerColor, shape = shape)
135134 .padding(top = 8 .dp)
You can’t perform that action at this time.
0 commit comments