Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calculate a custom tip: Android Basics with Compose #279

Open
mooikos opened this issue Feb 5, 2025 · 0 comments
Open

Calculate a custom tip: Android Basics with Compose #279

mooikos opened this issue Feb 5, 2025 · 0 comments

Comments

@mooikos
Copy link

mooikos commented Feb 5, 2025

URL of codelab
https://developer.android.com/codelabs/basic-android-kotlin-compose-calculate-tip

In which task and step of the codelab can this issue be found?

In the "Add a switch" (currently step 6)

Describe the problem

The code is likely having a small error,

from:

Row(
   modifier = modifier
       .fillMaxWidth()
       .size(48.dp),
   verticalAlignment = Alignment.CenterVertically
) {
}

to (Capital Modifier):

Row(
   modifier = Modifier
       .fillMaxWidth()
       .size(48.dp),
   verticalAlignment = Alignment.CenterVertically
) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant