Hi guys do we have any good blogs about the perfor...
# multiplatform
b
Hi guys do we have any good blogs about the performance of Compose Multiplatform ? Like how is it compared to performance of other hybrid and is is only a simple hybrid ui or has any advantage over flutter and i am only talking about CMP not KMP as a whole i know only sharing buisness logic is ok but i need to know if i share ui then what is its state ?
j
I did a comparison of app size & start-up speed back in September last year https://medium.com/@jacobras/android-ios-native-vs-flutter-vs-compose-multiplatform-7ef3d5ec2a56
m
I found this a while ago, I haven't finished reading it. Personally, I aim to have a single measurement system to apply across KMP 7 native and then apply that to other frameworks.
b
Thanks @Jacob Ras and @McEna for the sources
@McEna but that pdf was about compose not Compose multiplatform actually what i want is difference between compose multiplatform app and Flutter or React-native App
m
compose multiplatform is fulfilled by jetpack compose on android, so the performance should be equivalent. Regarding RN, it is pretty simple, compose mutiplatform is going to run circles around any RN app since you don't need to wait until a foreign engine (Hermes for JS, for example) starts before rendering your app. Unless the RN modules used in the sample are properly coded for lazy loading, the render operations are scarce, and the workload is fixed or limited, RN will be far slower. I can't speak a lot about Flutter, I'm not really knowledgeable about their internals.
🤩 1
b
@McEna Thanks but also the pdf you provided was great to understand performance diff b/w XML and Compose