Carla Ejemeh Inya-Aghasparkle98.hashnode.dev·Nov 14, 2023Implementing Dark Mode in your Flutter App.Table of Contents Prerequisites. Provider and shared preference as it relates to this article. Create ThemeScreen.dart file. Add required dependencies. Create the ThemeProvider class. Add ChangeNotifierProvider to the root of your App. Connect...Sentry COD and 1 other are discussing this2 people are discussing thisDiscuss·16 likes·56 readsFlutter
Ankur KhandelwalProblog.nocodetalks.co·Oct 31, 2023How to pass data across function in Bubble plugin?There are times when you need to pass data between different functions while building a client-side plugin in Bubble. However, there is no native method to accomplish this. One approach is to expose the data and request that user send it as input. Th...Discussbubble.io
peternjuguna muniupeterandroid.hashnode.dev·Sep 13, 2023Mastering Data Storage in Android: SQLite, SharedPreferences, and File StorageIntroduction: In the world of Android app development, effectively managing data is paramount to creating functional and user-friendly applications. From user preferences and configuration settings to structured data, there are various mechanisms ava...DiscussSQLite
Krunal Dhapodkarkrunu.hashnode.dev·Jul 15, 2023Building an app that stores data using Shared Preferences] In this tutorial, we will be building a simple Android app that uses Shared Preferences to store user data. The data we will be storing is the user's email address and password. This data will be persistent even if the user closes the app. The only...Discuss·2 likesShared Preferences
Krunal Dhapodkarkrunu.hashnode.dev·Jul 14, 2023Shared Preferences in Android DevelopmentAgenda Today we will discuss how to store user's data permanently in your Android app. Examples of Shared Preferences You might have seen various applications where you login and even if you close the application and when you open it again you are s...DiscussShared Preferences
Daniel Nyoreredanielnyorere.hashnode.dev·Jul 13, 2023Guide to easy state persistence with SharedPreferencesWhile working on mobile applications, the need to save state between application sessions could arise. For instance, when a user searches, it will be a good user experience for the user to be able to select from the list of previous searches rather t...Discuss·37 readsFlutter
Raman Tankraman04.hashnode.dev·Mar 5, 2023Shared PreferencesShared Preferences is a simple key-value storage system provided by the Flutter framework. This storage system is used to store small amounts of data that are required by the application across different screens. Shared Preference is an ideal solutio...Discuss·10 likes·79 readsFlutter
Aditya Rathoreitsadityarathore.hashnode.dev·Dec 6, 2022Shared Preferences in FlutterWhat are Shared Preferences? Android provides one of the most interesting and easy data storage options: Shared Preferences. It can be used to store and retrieve a small amount of primitive data as Key-Value pairs. Supported data types are int, doubl...Discuss·159 readsFlutter
Tushar Rupanitushar-rupani.hashnode.dev·Nov 4, 2022Shared Preferences - AndroidWhat is Shared Preferences? It is one of the concept of Data Persistence, just like Database, SharedPreference also is used to store the data, but not the large data. It allows us to store the data in the Key - Value pair. It can be thought of as th...Discuss·214 readsShared Preferences