You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do not use line breaks for formatting.
So for example we'd create the following Text Composable:
Text(text ="I am a test", color =Color(0xffffcc00.toInt()), fontSize =20.sp, modifier =Modifier.width(100.dp).background(Color(0xaa0000ff.toInt())))
We probably should define a threshold of number of arguments/modifier, where we start using line breaks, e.g.:
Text(
text ="I am a test",
color =Color(0xffffcc00.toInt()),
fontSize =20.sp,
modifier =Modifier
.width(100.dp)
.background(Color(0xaa0000ff.toInt()))
)
The text was updated successfully, but these errors were encountered:
Currently we do not use line breaks for formatting.
So for example we'd create the following
Text
Composable:We probably should define a threshold of number of arguments/modifier, where we start using line breaks, e.g.:
The text was updated successfully, but these errors were encountered: