TP-67104 | TP-67627 | Regression Issue Fix (#11006)
This commit is contained in:
@@ -11,6 +11,7 @@ import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.clickable
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
@@ -55,11 +56,11 @@ fun SettingItemComposable(
|
||||
content?.data?.title?.let {
|
||||
NaviTextWidgetized(
|
||||
textFieldData = content.data.title,
|
||||
modifier = Modifier.padding(bottom = 4.dp)
|
||||
)
|
||||
}
|
||||
if (!showPopup) {
|
||||
content?.data?.subTitle?.let {
|
||||
Spacer(modifier = Modifier.height(4.dp))
|
||||
NaviTextWidgetized(textFieldData = content.data.subTitle)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,13 +124,15 @@ fun OutlinedCheckWithDropDown(
|
||||
isFirstItemVisible(state.isFirstItemVisible())
|
||||
Box(modifier = Modifier.wrapContentHeight()) {
|
||||
LazyColumn(state = state, contentPadding = paddingValues) {
|
||||
item {
|
||||
Spacer(
|
||||
modifier =
|
||||
Modifier.fillMaxWidth()
|
||||
.height((2).dp)
|
||||
.background(color = getColorFromHexCode(hex = colorHiBlueHex))
|
||||
)
|
||||
if (data.data?.questionHeaderWidget != null) {
|
||||
item {
|
||||
Spacer(
|
||||
modifier =
|
||||
Modifier.fillMaxWidth()
|
||||
.height((2).dp)
|
||||
.background(color = getColorFromHexCode(hex = colorHiBlueHex))
|
||||
)
|
||||
}
|
||||
}
|
||||
item {
|
||||
Column {
|
||||
|
||||
Reference in New Issue
Block a user