Abhishek EdlaforDashwave for Mobile Devsdevblogs.dashwave.io·Sep 27, 2023Simplifying UI Development with Jetpack ComposeAndroid's journey in UI development has been nothing short of transformative. From the early days of rigid XML layouts to the more flexible ConstraintLayout, the platform has always strived to offer tools that cater to the diverse needs of its vast d...DiscussJetpack Compose
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 24, 2023Compose 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 { ...Discussandroid app development
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 22, 2023Box ScopeYou can see how the Box Scope is done~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...DiscussAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 22, 2023Box LayoutYou can see how the Box Layout is done! class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...Discusscompose multiplatform
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 21, 2023Modifier 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...DiscussAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 21, 2023Row/Column with Jetpack ComposeYou can see how to use rows and columns in Jetpack compose with this code class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { ...DiscussJetpack Compose
Ameen Shokoyameenotek.hashnode.dev·Sep 12, 2023Building Android Apps In 2023? Here Are 5 Things You Need To KnowGreetings! If you're here to discover the secrets of crafting robust, scalable, and cutting-edge Android apps, you've landed in the perfect spot. Consider this: Android OS, the backbone of more than 70% of the world's devices, caters to an incredibly...DiscussJetpack Compose
peternjuguna muniupeterandroid.hashnode.dev·Sep 9, 2023Mastering UI/UX Design: Elevating Your Android App’s User ExperienceIntroduction: In the world of Android app development, crafting an exceptional user experience (UX) is paramount to the success of your application. Your users should not only find your app visually appealing but also intuitive and user-friendly. Ach...DiscussAndroid
Vincent Tsenvtsen.hashnode.dev·Sep 9, 2023Simplify ViewModelProvider.Factory() Implementation with Kotlin Lambda and Object ExpressionsIf you are like me and still have not gotten used to the Dependency Injection framework (don't you think it complicates things?), you probably have been implementing the ViewModelProvider.Factory() interface for your view models that has custom const...Discuss·1 like·68 readsAndroid App DevAndroid
Etugbo Judithjudy.hashnode.dev·Sep 7, 2023Step-by-Step Tutorial: Displaying Images in your Jetpack Compose Project for BeginnersIntroduction Jetpack Compose is a modern Android UI development kit that makes UI development with composable functions easy. Images are a vital aspect of the user interface of any application, from displaying icons to presenting content. With the Im...Cess and 1 other are discussing this2 people are discussing thisDiscuss·10 likes·121 readsAndroid