Home
last modified time | relevance | path

Searched refs:InputPhase (Results 1 – 2 of 2) sorted by relevance

/compose/material/material/src/commonMain/kotlin/androidx/compose/material/
DTextFieldImpl.kt90 isFocused -> InputPhase.Focused
91 transformedText.isEmpty() -> InputPhase.UnfocusedEmpty
92 else -> InputPhase.UnfocusedNotEmpty
95 val labelColor: @Composable (InputPhase) -> Color = {
101 if (it == InputPhase.UnfocusedEmpty) false else isError,
271 inputState: InputPhase, in widthOrZero()
274 contentColor: @Composable (InputPhase) -> Color, in widthOrZero()
296 InputPhase.Focused -> 1f in widthOrZero()
297 InputPhase.UnfocusedEmpty -> 0f in widthOrZero()
298 InputPhase.UnfocusedNotEmpty -> 1f in widthOrZero()
[all …]
/compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/internal/
DTextFieldImpl.kt103 isFocused -> InputPhase.Focused
104 visualText.isEmpty() -> InputPhase.UnfocusedEmpty
105 else -> InputPhase.UnfocusedNotEmpty
371 inputState: InputPhase, in TextFieldTransitionScope()
396 InputPhase.Focused -> 1f in TextFieldTransitionScope()
397 InputPhase.UnfocusedEmpty -> if (showExpandedLabel) 0f else 1f in TextFieldTransitionScope()
398 InputPhase.UnfocusedNotEmpty -> 1f in TextFieldTransitionScope()
408 if (InputPhase.Focused isTransitioningTo InputPhase.UnfocusedEmpty) { in TextFieldTransitionScope()
411 InputPhase.UnfocusedEmpty isTransitioningTo InputPhase.Focused || in TextFieldTransitionScope()
412 InputPhase.UnfocusedNotEmpty isTransitioningTo InputPhase.UnfocusedEmpty in TextFieldTransitionScope()
[all …]