Status Update
Comments
f....@gmail.com <f....@gmail.com> #2
I have the same problem. I hope this issue gets resolved quickly.
f....@gmail.com <f....@gmail.com> #3
I'm having the same problem, which makes this a dealbreaker for using it unfortunately.
ni...@google.com <ni...@google.com> #4
In the other bug, the underlying popup is not set as focusable, so the keyboard opens. In alpha08 we have set the popup as focusable to intercept focus when the popup opens for A11y purposes. However it has the unintended consequence of intercepting ime actions, for some reason not passing them to child content despite the content (like textfield) still being focusable... Working on a solution.
ma...@google.com <ma...@google.com> #5
I find a way to make TextField editable for me. you can make a try.
ModalBottomSheet(/* .... */) {
// add follow code here to make your text filed edtable.
val view = LocalView.current.rootView.allViews
.filter { it.javaClass.name == "androidx.compose.ui.window.PopupLayout" }
.toList()
.first()
(view.context.getSystemService(Context.WINDOW_SERVICE) as WindowManager)
.updateViewLayout(view,
(view.layoutParams as WindowManager.LayoutParams).apply {
flags = flags and WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE.inv()
})
// your bottom sheet content code
TextField(/* ... */)
}
ma...@google.com <ma...@google.com> #6
ay...@google.com <ay...@google.com> #7
This issue which extends to any custom windows seems to have been resolved with:
Waiting on that change to land to proceed on this issue.
ma...@google.com <ma...@google.com> #8
Branch: androidx-main
commit 7545cec3617ab5d1ea83d66822bc094e7f03c562
Author: José Figueroa Santos <serniebanders@google.com>
Date: Wed Apr 19 16:04:18 2023
[Material3][gradle] Update compose dependencies to 1.4.2
Upgrade needed to intake the following bug fix:
Bug: 268380384
Bug: 272483584
RelNote: ModalBottomSheet now can display IME keyboard
Test: Manual
Change-Id: Idc5082008acb547cac2100a69cab4be7db85f50f
M compose/material3/material3/build.gradle
M compose/material3/material3/samples/src/main/java/androidx/compose/material3/samples/BottomSheetSamples.kt
f....@gmail.com <f....@gmail.com> #9
ma...@google.com <ma...@google.com> #11
I tested on a Pixel 7 running Android 14 Beta 1 and a Galaxy S23 Ultra running Android 13, both with Gboard.
When I tap a text field, it focuses and the cursor shows up, but the text scrubber handle also appears and is aligned to the top of the field instead of below the text.
ay...@google.com <ay...@google.com> #12
It seems to be fully fixed in 1.2.0-alpha01.
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #13
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3-android:1.2.0-alpha02
Description
Hi, I just migrated to the Compose implementation of
BottomSheetScaffold
today, but found I couldn't place the FAB on the left side of the screen using thefloatingActionButtonPosition=
argument ofBottomSheetScaffold
.In my app, the FAB needs to be placed on the left side of the screen and can't be placed on the right or in the middle, as you can see in the screenshot.
So I would like to request that a 'Start' position is added to the FabPosition enum.
Thank you.