It is a simple wallet application written in flutter. It helps you store and share cryptocurrencies.
NOTE: Flutter should be pre-installed (Version 3.22)
https://github.com/TeeWrath/social-verse-solana.git
cd social-verse-solana
flutter pub get
flutter run
(click the arrows to view in detail)
The Flic token is only obtained when user logs in, as in the response body we find a property named “token” which is the token we require. So to store this at that instance only, we do the following steps in the auth_controller.dart file
String flicToken = "";
void _setToken(String tkn) {
flicToken = tkn;
print('This is the user Token $flicToken');
notifyListeners();
}