Yuki Anzai
Yuki Anzai
this code based on https://github.com/android/camera/blob/master/CameraXBasic/app/src/main/java/com/android/example/cameraxbasic/utils/AutoFitPreviewBuilder.kt#L61 It aims to support 180 degree device orientation changes. I tried some orientation changes with Pixel 3, but I couldn't find the situation that this...
I've nothing changed code in onInterceptTouchEvent() from original ViewPager. So this seems a bug in original ViewPager.
I used rememberSaveable to store/restore WebView state. ```kotlin @Composable fun AccompanistWebSample() { val initialUrl = "https://google.github.io/accompanist/web/" var lastUrl by rememberSaveable { mutableStateOf(null) } var bundle by rememberSaveable { mutableStateOf(null) }...