I’m Bakoura Ibrahima. I’m a student, developer and tech enthusiast. If I’m not coding, I’m probably listening to music, playing video games, reading or simply sleeping. I’m also always excited to disassemble an electronic device with a screwdriver.
Implement a Loading View in Jetpack Compose
Hi, today I’ll show you how to implement a loading view in Jetpack Compose in case you want to show a loading animation during a long running task. Let’s suppose we have the following view: @Composable fun MainScreen() { Text(text = "Hello World") } We want to show a circular progress indicator instead of the text when performing for example a network request. Let’s start by defining a LoadingView composable that will show circular progress indicator or the content passed in parameters depending on the isLoading value:...
Welcome
Good morning, good afternoon, good evening! Welcome to my blog. Thank you for coming all the way up here. On this blog I will mainly talk about the stuff I code. For example if I write a feature in an app and I find it to be useful in other apps I might share how to implement it here. It could be anything from how to write loading screen for an Android app to how to set up an ASP....