Recall & Review
beginner
What is local storage in mobile apps?
Local storage is a way to save data directly on the device, so the app can access it anytime without needing the internet.
Click to reveal answer
beginner
How does local storage help when there is no internet?
Local storage keeps data saved on the device, so the app can show information and work even without an internet connection.
Click to reveal answer
intermediate
Name two common types of local storage in Flutter.
SharedPreferences for simple key-value pairs and SQLite for structured database storage.
Click to reveal answer
beginner
Why is local storage faster than fetching data from the internet?
Because data is saved directly on the device, accessing it is quicker than downloading from a server over the internet.
Click to reveal answer
beginner
What is a real-life example of using local storage for offline data?
A notes app saving your notes on your phone so you can read and edit them even when you have no internet.
Click to reveal answer
What does local storage allow your app to do?
✗ Incorrect
Local storage saves data on the device so the app can work without internet.
Which Flutter package is commonly used for simple local storage?
✗ Incorrect
SharedPreferences stores simple key-value data locally.
Why is local storage important for offline data?
✗ Incorrect
Local storage keeps data on the device so the app can access it anytime.
Which type of local storage is best for structured data in Flutter?
✗ Incorrect
SQLite is a database for structured local data.
What happens if your app has no local storage and no internet?
✗ Incorrect
Without local storage or internet, the app cannot access data.
Explain how local storage helps a Flutter app work offline.
Think about what happens when your phone has no internet but you still want to use an app.
You got /3 concepts.
Describe two types of local storage used in Flutter and when to use each.
One is for small bits of data, the other is like a small database.
You got /3 concepts.