JetBrains / compose-multiplatform

Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.

Home Page:https://jetbrains.com/lp/compose-multiplatform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cursor position is displayed on the left edge when textAlign is set to center in BasicTextField

y-sugitani opened this issue · comments

Describe the bug
When setting textAlign to TextAlign.Center in BasicTextField (and TextField) on iOS, the cursor position is displayed on the left edge when focused. On Android, it is displayed in the center as expected.

Affected platforms

  • iOS

Versions

  • Kotlin version: 1.9.23
  • Compose Multiplatform version: 1.6.2
  • OS version(s): iOS 17.4
  • Device: iPhone 15 Pro Simulator

To Reproduce

  1. Create a new Compose Multiplatform project
  2. Add the following code:
@Composable
@Preview
fun App() {
    var text by remember { mutableStateOf("") }

    MaterialTheme {
        BasicTextField(
            value = text,
            onValueChange = { text = it },
            modifier = Modifier
                .fillMaxWidth()
                .background(Color.LightGray)
                .padding(18.dp),
            maxLines = Int.MAX_VALUE,
            textStyle = TextStyle.Default.copy(
                textAlign = TextAlign.Center,
            ),
        )
    }
}
  1. Run the app on an iOS Simulator
  2. Tap the BasicTextField to focus it
  3. The cursor is displayed on the left edge

Expected behavior
Since textAlign in BasicTextField is set to TextAlign.Center, the cursor should be displayed in the center of the text field on iOS, just like on Android.

Screenshots

Android
https://github.com/JetBrains/compose-multiplatform/assets/32157797/a968c4a8-57a9-4962-8170-a5d4f115a6af

iOS
https://github.com/JetBrains/compose-multiplatform/assets/32157797/27ef6fd2-bb40-4714-99b9-3b6c510301d9

Additional context
The same behavior was observed when using TextField. Regardless of the textAlign value, the cursor is always displayed on the left edge on iOS.

A reproducible project is available at https://github.com/blackcat-carnival/compose-bugreport-202404-01

I reproduced it on a JVM as well
CursorIssue-all.zip