Aayush Paigwaraayushpaigwar.hashnode.dev·Jun 22, 2024How to Use Shared Preferences to Keep Users Logged In on Flutter AppsNeed for Managing the Session in Flutter Apps 🤔 Managing user sessions is crucial for providing a seamless user experience in mobile applications. In this blog, you will learn how to store and save the login session using shared_preferences in a Flu...175 readsFlutter
Pratik Mhatrepnmhatre.hashnode.dev·Jun 12, 2024Securing Data Storage in Android ApplicationsData security is a critical aspect of mobile application development. In today's digital age, ensuring the secure storage of sensitive data is more important than ever. As Bruce Schneier, a renowned security expert, once said, "Security is a process,...SQLite
Pratik Mhatrepnmhatre.hashnode.dev·Jun 9, 2024Introduction to Android Application Security: A Deep DiveIn today's digital age, mobile applications have become indispensable, making the security of these applications crucial. Bruce Schneier, a renowned security expert, once said, "Security is a process, not a product." This highlights the continuous ne...Android
Mayursinh Parmarmayursinhdevblog.hashnode.dev·May 20, 2024Topic: 13 Understanding Data Storage in FlutterHello devs, So in today's article, we talk about different types of data storage in Flutter. Flutter offers several options for storing data locally on the device. Each option has its strengths and use cases, so it's essential to choose the right one...Learn Flutter: Basic to AdvanceFlutter
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...16 likes·75 readsFlutter
Ankur Khandelwalblog.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...Bubble Pluginbubble.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...SQLite
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...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...Shared 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...Flutter