Created
February 6, 2020 22:10
-
-
Save AlexZhukovich/1bef080c70dfc5d9360f421b18adf1cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun getCoffeeDrinks(): List<CoffeeDrink> { | |
return listOf( | |
CoffeeDrink( | |
name = "Americano", | |
imageUrl = R.drawable.americano_small, | |
ingredients = "Espresso, Water" | |
), | |
CoffeeDrink( | |
name = "Cappuccino", | |
imageUrl = R.drawable.cappuccino_small, | |
ingredients = "Espresso, Steamed milk foam" | |
), | |
CoffeeDrink( | |
name = "Espresso", | |
imageUrl = R.drawable.espresso_small, | |
ingredients = "Ground coffee, Water" | |
) | |
... | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment