© 2023 Hashnode
#android-development
Hey Android-ers 👋🏻, In big Android projects, it is common to divide the app into several modules. This can be done for a variety of reasons, such as to improve modularity, testability, or maintainab…
What does the term "Launch modes" refer to in the context of Android? Standard Launch Mode: This mode creates a new instance of an activity within the same task it was launched from. It allows multip…
Almost every app showcases a list of items that are scrollable. From applications like Twitter, which lets users scroll their feeds, to music players like Spotify, and image-based apps like Instagram.…
Most applications feature a floating action bar docked in the middle of the bottom bar. Do you want to learn how to implement this feature in your mobile applications? In this article, you'll learn ho…
Nowadays, we all have smartphones with lots of applications. But has anyone considered how that app may be developed? If someone wants to create an app, how can he do so and what resources would be ne…
Intent is an important concept in Android Development that is important for creating applications that can interact with different activities in a module or with other applications in a device. It is …
Keep 2 versions of the same composable:Stateless and Stateful What are stateful and stateless composables in Jetpack compose ? A stateless component is a component that doesn't maintain any internal state. It's purely a function of its inp…
Overview of Kotlin and its Features Kotlin is a modern language that is developed by JetBrains, the same company that made the IntelliJ IDE. It is a statically typed language( i.e. the compiler checks…
In today's digital age, Android apps have become an essential part of every business. From e-commerce to healthcare, businesses are leveraging the power of Android app development to reach their targe…
There are a few ways you can pass data to a composable function: Pass by Value (function parameter) CompositionLocal Static CompositionLocal Pass by Value is a conventional way. CompositionLocal …