Jaehwa Noh
Jaehwa Noh
Same ```keyboardController``` in [here](https://github.com/android/nowinandroid/pull/1377/commits/68074da365c7dc1cbc921ef052678a238a2c419c#diff-b7eb4a807815df3cca021466d62c1de29ce1b1eb3b154fcf49b20dc1e561cb5aR479) line 479. What about pass the ```keyboardController``` into ```SearchTextField``` as an argument?
@JoseAlcerreca Unfortunately, I can't. I try to make some tests, but assertIsDisplay is always true whether behind System UI or not. And screenshot test always throw exception ``` java.lang.RuntimeException: Unable...
Oh It had discussed in issues. I forgotten. • Run with ```./gradlew testDemoDebug``` The result as #1242 • Run test directly, you can see above mentioned exception. By this reason,...
I finally found the formular to check position, but it only work when the simulator was Foldable(Resizable), not Phone and Tablet. The problem is how to run tests only on...
~~I added test case. But I don't say that this is best practices, but It is the only way to test, now.~~ Edit: There's no way to test it. The...
I breakthrough the testing by check the height of spacer. If the spacer height is same as SafeDraw bottom height, It guarantee the snackbar will have shown above the System...
The test failed from testharness. >java.lang.ClassCastException: com.google.accompanist.testharness.ContextThemeWrapper cannot be cast to android.app.Activity at androidx.window.layout.WindowMetricsCalculatorCompat.computeCurrentWindowMetrics(WindowMetricsCalculatorCompat.kt:68 The ```testharness``` deprecated so that I wait to bump Compose to use ```DeviceConfigurationOverride``` > Note: DeviceConfigurationOverride...
Thank you for your review. Could you tell me more details? > For testing, how about you add it to https://github.com/android/nowinandroid/pull/1343? 1. Does it mean I'd merge your branch into...
Does Anyone have ideas giving the fake insets to ```WindowInsets.safeDrawing``` to test screenshot test? My code does avoid System UI by calculate ````WindowInsets.safeDrawing````. ```kotlin val bottomNavigationHeight = density.run { WindowInsets.safeDrawing...
I'd added screenshots. Done.