#android
Read more stories on Hashnode
Articles with this tag
In Jetpack Compose buttons, you need to give two arguments for buttons. The first argument as onClick callback and another one is your button text...
You can see how to rotate through jetpack compose class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?)...
You can see how the Box Scope is done~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { ...
You can see how the Box Layout is done! class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { ...
Modifiers allow you to decorate or augment a composable. Modifiers let you do these sorts of things: Change the composable's size, layout, behavior,...
You can see how to use rows and columns in Jetpack compose with this code class MainActivity : ComponentActivity() { override fun...