Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit a8b8f6b776bbf094d95369edd65a2ae2a6c2fa9c
Author: Ralston Da Silva <ralu@google.com>
Date: Fri Aug 07 03:19:49 2020
Migrate TextField to the new Focus API
Bug: 161297615
Fixes: 161297615
Relnote: Removed onFocusChanged callbacks from TextField. Use Modifier.focusObserver instead.
Test: TextFieldTest, TextFieldFocusTest, TextFieldCursorTest and OutlinedTextFieldTest
Change-Id: I51089bfbc858ea302770f92b13886818cf48ba9c
M ui/integration-tests/demos/src/main/java/androidx/ui/demos/DemoFilter.kt
M ui/ui-core/integration-tests/ui-core-demos/src/main/java/androidx/compose/ui/demos/autofill/ExplicitAutofillTypesDemo.kt
M ui/ui-foundation/api/current.txt
M ui/ui-foundation/api/public_plus_experimental_current.txt
M ui/ui-foundation/api/restricted_current.txt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldCursorTest.kt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldFocusTest.kt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldTest.kt
M ui/ui-foundation/src/commonMain/kotlin/androidx/compose/foundation/BaseTextField.kt
M ui/ui-material/api/current.txt
M ui/ui-material/api/public_plus_experimental_current.txt
M ui/ui-material/api/restricted_current.txt
M ui/ui-material/src/androidAndroidTest/kotlin/androidx/compose/material/textfield/OutlinedTextFieldTest.kt
M ui/ui-material/src/androidAndroidTest/kotlin/androidx/compose/material/textfield/TextFieldTest.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/OutlinedTextField.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/TextField.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/TextFieldImpl.kt
M ui/ui-text/api/current.txt
M ui/ui-text/api/public_plus_experimental_current.txt
M ui/ui-text/api/restricted_current.txt
M ui/ui-text/integration-tests/ui-text-compose-demos/src/main/java/androidx/compose/foundation/text/demos/ComposeInputFieldFocusTransition.kt
M ui/ui-text/src/commonMain/kotlin/androidx/compose/foundation/text/CoreTextField.kt
https://android-review.googlesource.com/1393849
Branch: androidx-master-dev
commit a8b8f6b776bbf094d95369edd65a2ae2a6c2fa9c
Author: Ralston Da Silva <ralu@google.com>
Date: Fri Aug 07 03:19:49 2020
Migrate TextField to the new Focus API
Bug: 161297615
Fixes: 161297615
Relnote: Removed onFocusChanged callbacks from TextField. Use Modifier.focusObserver instead.
Test: TextFieldTest, TextFieldFocusTest, TextFieldCursorTest and OutlinedTextFieldTest
Change-Id: I51089bfbc858ea302770f92b13886818cf48ba9c
M ui/integration-tests/demos/src/main/java/androidx/ui/demos/DemoFilter.kt
M ui/ui-core/integration-tests/ui-core-demos/src/main/java/androidx/compose/ui/demos/autofill/ExplicitAutofillTypesDemo.kt
M ui/ui-foundation/api/current.txt
M ui/ui-foundation/api/public_plus_experimental_current.txt
M ui/ui-foundation/api/restricted_current.txt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldCursorTest.kt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldFocusTest.kt
M ui/ui-foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/TextFieldTest.kt
M ui/ui-foundation/src/commonMain/kotlin/androidx/compose/foundation/BaseTextField.kt
M ui/ui-material/api/current.txt
M ui/ui-material/api/public_plus_experimental_current.txt
M ui/ui-material/api/restricted_current.txt
M ui/ui-material/src/androidAndroidTest/kotlin/androidx/compose/material/textfield/OutlinedTextFieldTest.kt
M ui/ui-material/src/androidAndroidTest/kotlin/androidx/compose/material/textfield/TextFieldTest.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/OutlinedTextField.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/TextField.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/TextFieldImpl.kt
M ui/ui-text/api/current.txt
M ui/ui-text/api/public_plus_experimental_current.txt
M ui/ui-text/api/restricted_current.txt
M ui/ui-text/integration-tests/ui-text-compose-demos/src/main/java/androidx/compose/foundation/text/demos/ComposeInputFieldFocusTransition.kt
M ui/ui-text/src/commonMain/kotlin/androidx/compose/foundation/text/CoreTextField.kt
Description
FocusModifier is deprecated in favor or Modifier.focus().
Replace usages of FocusModifier in Text related code.