Slide 9
Slide 9 text
MODIFIERS
@Composabl
e
fun Greeting(name: String)
{
Surface(color = Color.Yellow)
{
Text
(
text = "Hello $name!"
,
modi
fi
er = Modi
fi
e
r
.padding(24.dp
)
.background(color = Color.Yellow, shape = RectangleShape
)
.clickable
{
Toast.makeText
(
this
,
"Click event"
,
Toast.LENGTH_SHORT
).show(
)
}
.
fi
llMaxSize(
)
)
}
}