Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
You can provide your own regex to By.text()
.
For example, By.text(Pattern.compile("All albums.*", Pattern.DOTALL))
should be equivalent to a multi-line startsWith.
os...@google.com <os...@google.com> #3
I'm probably dumb but why would it be the default and wanted behavior if not documented properly?
Every known startWith / contains function in Java/Kotlin are multiline, the javadoc says: A UI element will be considered a match if its text value starts with the substring parameter
Many people will fall into this non standard default behavior and loose tons of time trying to figure out why.
If you still consider this default is the correct one, then please document it.
Description
Compose version: 1.7.0-SNAPSHOT ConstraintLayout version: 1.0.1 (it seems to not be an issue when using 1.1.0-alpha13)
When wrapping
ConstraintLayout
in Compose withSharedTransitionLayout
, the following crash is observed, will the 1.1.0-alpha13 be released soon?