Is there a difference between `fillMaxSize()` and ...
# compose
a
Is there a difference between
fillMaxSize()
and using
fillMaxHeight().fillMaxWidth()
?
a
fillMaxSize()
is a more efficient way of saying
fillMaxHeight().fillMaxWidth()
since it's one modifier instead of two.
🙏 1
a
Thanks
👍 1