Etugbo Judithjudy.hashnode.dev·Sep 25, 2023Integrating WebView in Compose Android: A Comprehensive GuideIntroduction to Webview in Android Compose Jetpack Compose is very powerful and versatile making it possible to integrate webview in your mobile application. WebView allows you to embed and interact with web resources in your mobile application witho...Discusswebview
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
Abu Yousufayousuf.hashnode.dev·Sep 8, 2023Paging 3 on AndroidRecyclerView is used to display a large set of data with a limited window. In RecyclerView we can display paged data. The Paging library makes it easy to show paged data in RecyclerView. Before Paging library Before paging the library, we can display...Discuss·1.1K readsAndroid
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
Romman Sabbirrommansabbir.com·Aug 24, 2023Android : Compose UI StateIntroduction In Android, the recommended practice is to hold a UI-related state (Compose UI State) in a ViewModel rather than in an Activity or Fragment. This is because Jetpack Compose follows a reactive programming model where the UI is composed ba...Discuss·216 readsAndroid Application DevelopmentAndroid
Etugbo Judithjudy.hashnode.dev·Aug 20, 2023Mastering Rows and Columns in Jetpack Compose Boost Your UI Design SkillsIntroduction to Jetpack Compose Jetpack Compose is a modern way to build UI for Android apps. Compose uses a Declarative UI approach. You declare everything about how your UI should look using composable functions. Compose makes it simple to build li...Discuss·9 likes·160 readscompose
Love Otudorloveotudorcodes.hashnode.dev·Aug 19, 2023Getting Started With RelayDroiders, gather here! Do you ever get tired of the monotonous back-and-forth between yourself and designers when building Android UI? If so, then you need to check out Relay! Relay is a plugin that makes it possible to directly import Figma designs...Discuss·10 likes·48 readsrelay
Rohan Sendevopswithrohan.hashnode.dev·Aug 14, 2023Docker AdvanceIntroduction to Docker Docker is a set of platforms as a service (PaaS) products that use the Operating system level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own softw...DiscussDevops
Compose ReadyMadecompose.hashnode.dev·May 21, 2023Statusbar and Navigation bar Colourimplementation "com.google.accompanist:accompanist-systemuicontroller:0.27.0" Theme.kt add this val systemUiController = rememberSystemUiController() if(darkTheme){ systemUiController.setSystemBarsColor(color = colorScheme.background,dar...Discuss·26 readscompose
Rhytham Negirhythamnegi.com·May 3, 2023Room Database Guide Coroutine (Kotlin)Room is a persistence library that provides an abstraction layer over SQLite in Android applications. It makes it easier to work with databases, and it supports coroutines in Kotlin for better handling of asynchronous tasks. Here's a step-by-step gui...Discuss·144 readsKotlin