A developer has written the following function in their Andr…
A developer has written the following function in their Android app. What must be added so that the Compose compiler recognizes this function’s purpose is to render a text element as part of the app’s UI? fun WelcomeBanner(username: String) { Text(text = “Welcome back, $username!”) }
Read Details