12
12
13
13
package com.orange.ouds.app.ui.utilities.composable
14
14
15
+ import androidx.compose.foundation.LocalIndication
15
16
import androidx.compose.foundation.clickable
16
17
import androidx.compose.foundation.horizontalScroll
18
+ import androidx.compose.foundation.interaction.MutableInteractionSource
17
19
import androidx.compose.foundation.layout.Arrangement
18
20
import androidx.compose.foundation.layout.Column
19
21
import androidx.compose.foundation.layout.Row
@@ -28,13 +30,14 @@ import androidx.compose.material3.FilterChip
28
30
import androidx.compose.material3.FilterChipDefaults
29
31
import androidx.compose.material3.Icon
30
32
import androidx.compose.material3.ListItem
31
- import androidx.compose.material3.Switch
32
33
import androidx.compose.material3.Text
33
34
import androidx.compose.material3.TextField
34
35
import androidx.compose.runtime.Composable
36
+ import androidx.compose.runtime.remember
35
37
import androidx.compose.ui.Modifier
36
38
import androidx.compose.ui.text.TextStyle
37
39
import com.orange.ouds.app.ui.utilities.listItemHorizontalPadding
40
+ import com.orange.ouds.core.component.OudsSwitch
38
41
import com.orange.ouds.core.theme.OudsTheme
39
42
40
43
private val labelTextStyle: TextStyle
@@ -43,13 +46,27 @@ private val labelTextStyle: TextStyle
43
46
44
47
@Composable
45
48
fun CustomizationSwitchListItem (label : String , checked : Boolean , onCheckedChange : (Boolean ) -> Unit , enabled : Boolean = true) {
49
+ val interactionSource = remember { MutableInteractionSource () }
46
50
ListItem (
47
51
modifier = Modifier
48
52
.fillMaxWidth()
49
- .clickable(enabled = enabled) { onCheckedChange(! checked) }
53
+ .clickable(
54
+ interactionSource = interactionSource,
55
+ indication = LocalIndication .current,
56
+ enabled = enabled
57
+ ) {
58
+ onCheckedChange(! checked)
59
+ }
50
60
.listItemHorizontalPadding(),
51
61
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
+ }
53
70
)
54
71
}
55
72
0 commit comments