Skip to content

Commit a7ccd25

Browse files
committed
Use OudsSwitch instead of Switch in demo app
1 parent 5533537 commit a7ccd25

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt

+20-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212

1313
package com.orange.ouds.app.ui.utilities.composable
1414

15+
import androidx.compose.foundation.LocalIndication
1516
import androidx.compose.foundation.clickable
1617
import androidx.compose.foundation.horizontalScroll
18+
import androidx.compose.foundation.interaction.MutableInteractionSource
1719
import androidx.compose.foundation.layout.Arrangement
1820
import androidx.compose.foundation.layout.Column
1921
import androidx.compose.foundation.layout.Row
@@ -28,13 +30,14 @@ import androidx.compose.material3.FilterChip
2830
import androidx.compose.material3.FilterChipDefaults
2931
import androidx.compose.material3.Icon
3032
import androidx.compose.material3.ListItem
31-
import androidx.compose.material3.Switch
3233
import androidx.compose.material3.Text
3334
import androidx.compose.material3.TextField
3435
import androidx.compose.runtime.Composable
36+
import androidx.compose.runtime.remember
3537
import androidx.compose.ui.Modifier
3638
import androidx.compose.ui.text.TextStyle
3739
import com.orange.ouds.app.ui.utilities.listItemHorizontalPadding
40+
import com.orange.ouds.core.component.OudsSwitch
3841
import com.orange.ouds.core.theme.OudsTheme
3942

4043
private val labelTextStyle: TextStyle
@@ -43,13 +46,27 @@ private val labelTextStyle: TextStyle
4346

4447
@Composable
4548
fun CustomizationSwitchListItem(label: String, checked: Boolean, onCheckedChange: (Boolean) -> Unit, enabled: Boolean = true) {
49+
val interactionSource = remember { MutableInteractionSource() }
4650
ListItem(
4751
modifier = Modifier
4852
.fillMaxWidth()
49-
.clickable(enabled = enabled) { onCheckedChange(!checked) }
53+
.clickable(
54+
interactionSource = interactionSource,
55+
indication = LocalIndication.current,
56+
enabled = enabled
57+
) {
58+
onCheckedChange(!checked)
59+
}
5060
.listItemHorizontalPadding(),
5161
headlineContent = { Text(text = label, style = labelTextStyle) },
52-
trailingContent = { Switch(checked = checked, onCheckedChange = null, enabled = enabled) }
62+
trailingContent = {
63+
OudsSwitch(
64+
checked = checked,
65+
onCheckedChange = null,
66+
enabled = enabled,
67+
interactionSource = interactionSource
68+
)
69+
}
5370
)
5471
}
5572

0 commit comments

Comments
 (0)