Ibraheem Zulfiqar
Ibraheem Zulfiqar
Well if anyone is still looking. Set bitmap: ```kotlin gpuImageView.setRatio(width / height) gpuImageView.setImage(bitmap) ``` than capture: ``` gpuImageView.capture() // OR gpuImageView.gpuImage.bitmapWithFilterApplied ``` I don't know whats the difference between `bitmapWithFilterApplied...
> "This API is a wrap on top on DisposableEffect, will be removed in 1.1.0, replace with DisposableEffect" for screen's lifecycle you can use `LifecycleEffectOnce` or just use the `DisposableEffect`.
You can either provide a `uniqueScreenKey` for every screen class: ```kotlin class MyScreen : Screen { override val key: ScreenKey = uniqueScreenKey } ``` or create some helper method to...
follow these issues... https://issuetracker.google.com/issues/135556699 https://issuetracker.google.com/issues/157506938