@@ -6,7 +6,6 @@ import androidx.compose.material3.MaterialTheme
6
6
import androidx.compose.material3.Text
7
7
import androidx.compose.runtime.Composable
8
8
import androidx.compose.runtime.LaunchedEffect
9
- import androidx.compose.runtime.collectAsState
10
9
import androidx.compose.runtime.derivedStateOf
11
10
import androidx.compose.runtime.getValue
12
11
import androidx.compose.runtime.mutableStateOf
@@ -20,6 +19,7 @@ import androidx.compose.ui.platform.testTag
20
19
import androidx.compose.ui.res.stringResource
21
20
import androidx.compose.ui.text.input.KeyboardType
22
21
import androidx.compose.ui.tooling.preview.Preview
22
+ import androidx.lifecycle.compose.collectAsStateWithLifecycle
23
23
import com.ramcosta.composedestinations.annotation.Destination
24
24
import com.ramcosta.composedestinations.navigation.DestinationsNavigator
25
25
import com.ramcosta.composedestinations.result.ResultBackNavigator
@@ -40,16 +40,16 @@ import org.koin.core.parameter.parametersOf
40
40
41
41
@Preview
42
42
@Composable
43
- fun PreviewCreateCustomListDialog () {
44
- AppTheme { CreateCustomListDialog (uiState = CreateCustomListUiState ()) }
43
+ private fun PreviewCreateCustomListDialog () {
44
+ AppTheme { CreateCustomListDialog (state = CreateCustomListUiState ()) }
45
45
}
46
46
47
47
@Preview
48
48
@Composable
49
- fun PreviewCreateCustomListDialogError () {
49
+ private fun PreviewCreateCustomListDialogError () {
50
50
AppTheme {
51
51
CreateCustomListDialog (
52
- uiState = CreateCustomListUiState (error = CustomListsError .CustomListExists )
52
+ state = CreateCustomListUiState (error = CustomListsError .CustomListExists )
53
53
)
54
54
}
55
55
}
@@ -82,9 +82,9 @@ fun CreateCustomList(
82
82
}
83
83
}
84
84
}
85
- val uiState = vm.uiState.collectAsState().value
85
+ val state by vm.uiState.collectAsStateWithLifecycle()
86
86
CreateCustomListDialog (
87
- uiState = uiState ,
87
+ state = state ,
88
88
createCustomList = vm::createCustomList,
89
89
onInputChanged = vm::clearError,
90
90
onDismiss = backNavigator::navigateBack
@@ -93,7 +93,7 @@ fun CreateCustomList(
93
93
94
94
@Composable
95
95
fun CreateCustomListDialog (
96
- uiState : CreateCustomListUiState ,
96
+ state : CreateCustomListUiState ,
97
97
createCustomList : (String ) -> Unit = {},
98
98
onInputChanged : () -> Unit = {},
99
99
onDismiss : () -> Unit = {}
@@ -124,12 +124,12 @@ fun CreateCustomListDialog(
124
124
},
125
125
keyboardType = KeyboardType .Text ,
126
126
placeholderText = " " ,
127
- isValidValue = uiState .error == null ,
127
+ isValidValue = state .error == null ,
128
128
isDigitsOnlyAllowed = false ,
129
129
supportingText = {
130
- if (uiState .error != null ) {
130
+ if (state .error != null ) {
131
131
Text (
132
- text = uiState .error.errorString(),
132
+ text = state .error.errorString(),
133
133
color = MaterialTheme .colorScheme.error,
134
134
style = MaterialTheme .typography.bodySmall
135
135
)
0 commit comments