Ijlal Ahmadblogs.ijlalahmad.tech·Feb 6, 2024Evolution of List Rendering in AndroidLists are integral components in Android applications, found across various functionalities like contacts, chat, social media, and music apps. Even seemingly simple apps, like calculators, incorporate lists for unit conversions. As an Android develop...31 readsscrollview
Fakhrul Siddiqeifakhrulasa.hashnode.dev·Jun 6, 2023LazyColumn vs RecyclerView!!We are using LazyColumn in Jetpack Compose, let's see how they differ from each other and how they work. 1. Re-using views: Unlike re-using already created views like RecyclerView, lazyColumn uses a lazy list which emits a new view whenever we scroll...530 readsAndroid