Kshitij Patil
03/17/2021, 8:01 AMRow
Column
based Composable works way better than ConstraintLayout
. So you might lose some alignment constraint provisions but there won’t be any performance hits. ConstraintLayout
was accumulating lag over the time while Row
, Column
being simple enough, was able to handle heavy operations.Gabriel
03/17/2021, 10:16 AM