-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Good job on the library first of all. My only request is making PointerInputScope.detectZoomableGestures inside Zoomable public dropping the internal modifier. My usecase involves supporting pinch to zoom of an image inside a fixed size LazyRow. LazyRow with fixed height unfortunately clips children beyond height + 30.dp according to https://issuetracker.google.com/issues/219687415 so the workaround I've found is applying Modifier.pointerInput(state) to the image composable inside LazyRow and having the Zoomable composable and a duplicate image composable with enabled set to false outside of everything basically reacting to state changes from the inner image composable. Copying the code inside my project solved the issue for now but it would be great to have the method public.