Михаил Кошиков
Михаил Кошиков

Could you add to the error description a fragment of the regex that contains the error?

```kotlin @Composable fun ZoomableLazyColumn() { LazyColumn( modifier = Modifier .fillMaxSize() .zoomable( rememberZoomState(), onTap = { Log.d(TAG, "Tap") } ) ) { items(50) { Box( modifier = Modifier .fillMaxWidth() .height(100.dp) )...