How to use Shared Preferences

Looking for a way to save some simple data in your Flutter app? The Shared Preferences package is the answer. It is a wrapper for platform specific storage systems: SharedPreferences on Android, NSUserDefaults on iOS, and Local Storage on the web. The key value store supports String, int, bool, double, and List<String>. It is extremely…More

How to play Sound

If you are searching the official Flutter documentation for how to play sound files you will find that this is not integrated in the SDK and needs an unofficial package. After trying a few my favorite is the audioplayers package. It is easy to use and seems to perform well. In this tutorial I will…More