Add test for ChangeAccountProviderPresenter and other presenters.

This commit is contained in:
Benoit Marty 2023-06-07 15:18:23 +02:00
parent a1b1df4cb4
commit cd860e9de3
10 changed files with 432 additions and 403 deletions

View file

@ -22,5 +22,5 @@ import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
@Composable
public fun textFieldState(stateValue: String): MutableState<String> =
fun textFieldState(stateValue: String): MutableState<String> =
remember(stateValue) { mutableStateOf(stateValue) }