In the last post we outlined the foundations for how our kotlin multiplatform project is going to be structured. With this in mind, we’re going to start building the next part of our project – here we’ll start with the remote layer of our application. You may recall seeing how we had each API responsibility… Continue reading
Post Category → Android
Exploring Dynamic Feature Navigation on Android
Since the introduction of the Navigation Component on Android, navigating the different parts of our application has become much more pleasant to implement. We’ve been able to better decouple navigation logic from our activities and fragments, along with being able to test these paths with more ease. However, the Navigation Component has only ever allowed… Continue reading
Exploring Jetpack Compose: Floating Action Button
Important: The contents of this article have been deprecated with newer releases for Jetpack Compose. If you’re looking to learn about the Floating Action Button composable, please see the guides here.
Exploring Jetpack Compose: TopAppBar
Important: The contents of this article have been deprecated with newer releases for Jetpack Compose. If you’re looking to learn about the TopAppBar composable, please see the guides here.
Enabling dark theme in Android WebViews
So your apps just implemented a shiny new dark theme and it’s looking ? And if you haven’t yet, maybe it’s in the pipeline for you to work on sometime in the future! There are lots of benefits to having a dark theme in your application, and having it consistent throughout your application allows for… Continue reading
Building an App with Kotlin Multiplatform: Structuring our app
Over the past few months I’ve been seeing more and more talk of Kotlin multiplatform online. With this rise in conversations on the topic, I naturally became more and more curious about the technology. I recently started planning out one of my next side-projects, Minimise – the app to help us think more about the… Continue reading
Exploring Jetpack Compose: Row & Column
Important: The contents of this article have been deprecated with newer releases for Jetpack Compose. Read more on these links about the Column and Row.
Exploring GraphQL with Coroutines on Android
In a recent article of mine we took a look at how we could implement OAuth flows in Android with the use of Custom Tabs . This was done using the Product Hunt API and now that we authenticated users within our client, we can go ahead and interact with the rest of the API…. Continue reading
Exploring Jetpack Compose: Text
Within Android Studio 4.0 Canary 1 we can start exploring Jetpack compose, a new way to build the UI for your android applications in a declarative manner. To get started with jetpack compose, there is a great tutorial on the official developer site. In this series of articles I want to dive into each of the… Continue reading
Exploring Jetpack Compose: Button
Important: The contents of this article have been deprecated with newer releases for Jetpack Compose. If you’re looking to learn about the Button composable, please see the guides here. If there are any questions on how to make use of the Button component then please do reach out. Otherwise, I’ll catch you in the next… Continue reading