You can easily download .apk file from our download page.
- It's an app that allows you to save your contacts and their numbers.
- You can edit names and numbers in your contact list.
- Your data is securely stored within the app.
- The app efficiently manages and stores your data with almost no limits.
- The app is coded in Flutter, with every error fixed.
- It does not connect to any external database or network.
- It saves your data on your own device



As we discussed before, this app saves user data on their local device. The data app stores are list of contacts and background color.
This is possible with shared preferences package. This package allows developers to store data in local device.


But, this can give us error sometimes. For example, if we don't set a value for tag 'name' and try to get it, this will give us an error. So, it's preferred to use it in a try & catch block:

Other important thing that helped me build this app is url launcher package. This package allows us to redirect user to different pages.
Now, you maybe asked that why do i need to send user to a website? Actually, i don't. This package can redirect to different apps on mobile. The One I Used is 'tel'. This tag redirects to phone app in mobile devices which user can call the number of contact.

Now, in app we can see that contacts are stored like : '$(name) + " : " + $(number)'. So, we'll have to extract number from that string:

Discord