Dominaezzz
12/01/2020, 12:52 AMtranslate { scale { rotate { drawImage(...) } } } in what order are these transformations applied to the drawn image?Dominaezzz
12/01/2020, 1:27 AMNader Jawad
12/01/2020, 4:03 AMwithTransform API that provides a scoped transformation block that will batch the transformations with a single save/restore call internally so its a bit more optimized and saves on indentation/curly bracesNader Jawad
12/01/2020, 4:04 AMwithTransform API here as well: https://cs.android.com/androidx/platform/frameworks/support/+/androidx-master-dev:compose/ui/ui-graphics/samples/src/main/java/androidx/compose/ui/graphics/samples/DrawScopeSample.kt;l=61?q=DrawScopeSampleDominaezzz
12/01/2020, 10:11 AMDominaezzz
12/01/2020, 10:11 AMwithTransform hint.