pavi2410
10/23/2019, 7:33 PM@Preview
@Composable
fun Greeting(name: String = "Android") {
Text (text = "Hello $name!")
}
Would the preview work by using default values?themishkun
10/23/2019, 7:36 PM@Preview
is to make a documentation for your components. So you can develop them and provide some usage examples for different statesromainguy
10/23/2019, 7:48 PM