How To Add A Jetpack Compose Button

Adding a Simple Button Adding a simple button with just some text. Sometimes you just want a button. The Column composable is not required. I added it because I’m testing out several different buttons and I want them all lined up down the center of the screen. To add a button to your app use […]

Continue Reading

Setting Up A Simple Android Fragments Project With Navigation

A quick and simple sample project that will demonstrate how to setup Android fragments and navigate between them. Will walk through initial project setup, necessary dependencies, setup of 3 different fragments with navigation between them using jetpack and Androidx. Initial Project Setup In Android Studio create a new project with just an empty activity. Let […]

Continue Reading

Passing An Object To New Activity in Android

So if you are like me, you prefer to transfer data around in you application using a simple objects that really only contain public or private fields and/or their getters and setters. For lack of a better term I’m going to call these object Data Transfer Objects (DTO) even thought we are not technically passing […]

Continue Reading