OKOybek Kholiqovinoybeksblog.hashnode.dev·Oct 6, 2023 · 2 min readButtons in Jetpack ComposeIn Jetpack Compose buttons, you need to give two arguments for buttons. The first argument as onClick callback and another one is your button text element. You can add a Text-Composable or any other Composable as child elements of the Button class ...00
OKOybek Kholiqovinoybeksblog.hashnode.dev·Sep 24, 2023 · 2 min readCompose Text StyleYou can see what kind of text styles you can do~~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...00
OKOybek Kholiqovinoybeksblog.hashnode.dev·Sep 22, 2023 · 1 min readBox ScopeYou can see how the Box Scope is done~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...00
OKOybek Kholiqovinoybeksblog.hashnode.dev·Sep 22, 2023 · 1 min readBox LayoutYou can see how the Box Layout is done! class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...00
OKOybek Kholiqovinoybeksblog.hashnode.dev·Sep 21, 2023 · 1 min readModifier in Jetpack ComposeModifiers allow you to decorate or augment a composable. Modifiers let you do these sorts of things: Change the composable's size, layout, behavior, and appearance Add information, like accessibility labels Process user input Add high-level inter...00