3.16. Dart Basics: Local Storage

Página 34

Local storage is an important concept in any programming language, including Dart, which is the programming language used in developing Flutter apps. Local storage refers to an app's ability to store data on the user's device for later use. This concept is essential for creating applications that work offline or that need to store information between user sessions.

To understand how local storage works in Dart, it is first necessary to understand the concept of variables. A variable is a name given to a storage location in the computer's memory. In Dart, you can declare a variable using the 'var' keyword, followed by the variable name and, optionally, an initial value. For example, 'var myVariable = 10;' declares a variable named 'myVariable' and initializes it to the value 10.

In Dart, variables are strongly typed, which means that the type of data a variable can contain is defined at declaration time. This is unlike other programming languages ​​such as JavaScript, where variables can change types over time. However, Dart also supports dynamic typing via the 'dynamic' keyword.

Now, when it comes to local storage in Dart, there are several ways to accomplish this. One of the most common methods is through the use of shared preferences. Shared preferences allow you to store simple data such as integers, strings, booleans, and lists of strings persistently on the user's device.

To use shared preferences in Dart, you first need to add the 'shared_preferences' library to your 'pubspec.yaml' file. You can then import the library into your Dart file using 'import 'package:shared_preferences/shared_preferences.dart';'.

Once imported, you can create an instance of SharedPreferences using 'SharedPreferences.getInstance();'. This returns a Future that you can wait to get an instance of SharedPreferences. With this instance, you can use methods like 'setInt', 'setString', 'setBool' and 'setStringList' to store data, and 'getInt', 'getString', 'getBool' and 'getStringList' to retrieve data.

For example, to store an integer, you could do something like:

SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.setInt('myInt', 10);

And to retrieve that integer, you can do:

SharedPreferences prefs = await SharedPreferences.getInstance();
int myInt = prefs.getInt('myInt') ?? 0;

Note that '?? 0' is used to provide a default value of 0 if 'myInt' does not exist in shared preferences.

In addition to shared preferences, Dart also supports other forms of local storage such as SQLite databases and file storage. However, these options are more complex and often require the use of additional libraries.

In short, local storage in Dart is an essential concept for developing Flutter apps. It allows you to persistently store data on the user's device, which is useful for creating applications that work offline or that need to maintain information between user sessions. There are several ways to accomplish local storage in Dart, including shared preferences, SQLite databases, and file storage.

Understanding local storage is just one part of developing Flutter apps. To become a well-rounded Flutter developer, you also need to understand other concepts like state management, navigation and routing, API integration, and more. Fortunately, there are many resources available, including online courses, tutorials, and official documentation, that can help you learn these concepts and become an effective Flutter developer.

Now answer the exercise about the content:

What is the role of local storage in Dart programming language and Flutter application development?

You are right! Congratulations, now go to the next page

You missed! Try again.

Next page of the Free Ebook:

353.17. Dart Basics: User Authentication

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text