Hi Guys!
I want to ask what is the best way to do something...
I want to create a Composable ("view") to do a TimeLine (for example), and this will contains an icon, color and content for each "row"
But, what I'm not sure is... if each row has a title, what's the best way? make a composable function with lambda that returns a String?
What about icon? A lambda that returns an Asset?
Or instead, a composable lambda to allow user to customize the title / icon... so it will allow change the size of the icon etc...
TL;DR: What I'm not sure in compose is... how I allow customization of content with some constrained rules about style / size etc...