Overview & Purpose
I’ve started building a mobile app called Gas Tracker to keep a personal log of where and when I stop for gas. The goal is to collect this data over time so I can analyze my fuel habits and efficiency.
This project also serves a secondary purpose: it’s a learning experience. I’m using it to get more familiar with working with APIs and building cross-platform mobile apps using .NET MAUI.
Progress So Far
Here’s what I’ve completed up to this point:
- Currently working on the user account system.
- Built the basic app layout using MAUI.
- Integrated the Google Places API to fetch the nearest gas stations.
- Set up tables in Amazon DynamoDB to store data.
TODOs
Account Creation
Users will sign in using an email and password. Each account will be associated with one or more vehicles and their corresponding gas station visits. This will help keep everything organized by user.
Vehicle Registration
Each user can register their vehicle(s) by entering basic information like:
- Make
- Model
- Year
- Current mileage
Tracking mileage allows me to estimate fuel efficiency over time (i.e., MPG calculations based on fill-up logs).
Fills Ups
“Fill-Ups” is the internal term I’m using for each gas station visit. Users will select their vehicle from a dropdown, then enter:
- Price per gallon
- Current mileage at the time of fill-up
- Number of gallons added
This will form the core dataset for later analysis.
Final Touches
After all the core features are built out, I’ll focus on:
- UI/UX improvements
- Adding some simple data visualization (charts, graphs)
- Possibly adding reminders or stats summaries