My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more
I created a mobile application to check for diabetic patients in Nigerian states

I created a mobile application to check for diabetic patients in Nigerian states

Oladapo Olatubosun's photo
Oladapo Olatubosun
·Dec 1, 2021·

2 min read

Over time I have been claiming to be a developer but I haven't really done anything substantial with my coding prowess.

Last week a classmate of mine came to meet me and was like, "Dapo, you can make mobile applications right?", at first I wanted to say no because I really haven't tried anything from scratch as I am used to following tutorial videos without tweaking anything but I said yes with a low level of certainty.

Fast forward to Sunday, someone messaged me and informed me that he wanted to build a mobile application for his final year project and it was to get the number of diabetic patients in Nigerian states. I didn't know what to say or do at first but after taking time to think I started coding. Due to the fact that I have not undertaken many projects, I thought it would take me so much time but in less than three days I have finally completed the application.

I used Google Maps API. At first, I was using "Map Embedded" and it was not giving me what I wanted, I was stuck because I didn't know of other options. It took me a couple of hours to know that there was "Map for android" and "Map for iOS".

Code snippet for placing markers on the google map

_markers.add(
const Marker(
markerId: MarkerId ('id-27'),
infoWindow: InfoWindow(
title: 'Osun',
snippet: 'Number of Diabetic patients = ...'
),
position: LatLng(7.5629, 4.5200)
),
);

My journey into constant coding, facing errors, debugging, and publishing mobile applications is officially starting today, 1st December 2021.