데이터를 위한 Shared Preferences
`shared_preferences`를 사용해 사용자 설정 및 환경설정과 같은 소량의 데이터를 키-값 쌍으로 로컬에 저장합니다.
데이터를 위한 Shared Preferences은(는) CoddyKit의 무료 Flutter Mobile Development 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Flutter Mobile Development 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Flutter Mobile Development 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
What are Shared Preferences?
When building mobile apps, you often need to store small bits of data locally on the device. This could be anything from a user's dark mode preference to their last logged-in status.
shared_preferences is a Flutter package that helps you do just that! It provides a simple way to store key-value pairs of primitive data types.
Why Use Shared Preferences?
- Simple Data: Ideal for storing simple data types like booleans, integers, doubles, strings, and lists of strings.
- User Settings: Perfect for saving user preferences, app settings, or theme choices.
- Lightweight: It's a quick and easy way to persist small amounts of data without needing a full database.
Think of it like a small digital notepad for your app's temporary memory!
Installing the Package
To use shared_preferences, you first need to add it to your project's dependencies.
Open your pubspec.yaml file and add the following line under dependencies:
dependencies:
flutter:
sdk: flutter
shared_preferences: ^2.2.2 # Add this lineSaving Your First Preference
Once the package is added, you can start saving data. You'll need to get an instance of SharedPreferences and then use methods like setBool(), setString(), etc.
Remember to use await because these operations are asynchronous!
import 'package:shared_preferences/shared_preferences.dart';
Future<void> saveSetting() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setBool('isDarkMode', true);
print('Dark mode setting saved!');
}Run It: Saving a Boolean
Try running this example to see how a boolean value is saved. We'll set a 'welcomeShown' flag to true.
import 'package:flutter/widgets.dart';
import 'package:shared_preferences/shared_preferences.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
SharedPreferences prefs = await SharedPreferences.getInstance();
// Save a boolean value
await prefs.setBool('welcomeShown', true);
print('welcomeShown saved: ${prefs.getBool('welcomeShown')}');
}Retrieving Saved Data
To get data back, you use corresponding get methods like getBool(), getString(), etc. These methods return a nullable type (e.g., bool?) because the key might not exist.
It's good practice to provide a default value using the ?? operator if the key is not found.
import 'package:shared_preferences/shared_preferences.dart';
Future<bool> getSetting() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
// Get 'isDarkMode', default to false if not found
bool isDark = prefs.getBool('isDarkMode') ?? false;
return isDark;
}Run It: Loading a Boolean
Let's load the welcomeShown preference we saved earlier. Notice how we handle the case where it might not exist by providing a default of false.
import 'package:flutter/widgets.dart';
import 'package:shared_preferences/shared_preferences.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
SharedPreferences prefs = await SharedPreferences.getInstance();
// Load 'welcomeShown', default to false if not present
bool welcomeShown = prefs.getBool('welcomeShown') ?? false;
print('Is welcome screen already shown? $welcomeShown');
// Let's try to load a key that doesn't exist
String? userName = prefs.getString('userName');
print('User Name: ${userName ?? 'Guest'}');
}Saving Other Data Types
shared_preferences supports several basic data types:
setString(key, value)for textsetInt(key, value)for whole numberssetDouble(key, value)for decimal numberssetStringList(key, value)for lists of strings
There are corresponding get methods for each type.
Run It: Saving Mixed Data
This example demonstrates saving and loading a string, an integer, and a list of strings. See how different types are handled.
import 'package:flutter/widgets.dart';
import 'package:shared_preferences/shared_preferences.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
SharedPreferences prefs = await SharedPreferences.getInstance();
// Save different data types
await prefs.setString('userName', 'Coddy');
await prefs.setInt('score', 12345);
await prefs.setStringList('favoriteFoods', ['Pizza', 'Sushi', 'Tacos']);
print('All data saved!');
// Load and print them
String? name = prefs.getString('userName');
int? score = prefs.getInt('score');
List<String>? foods = prefs.getStringList('favoriteFoods');
print('User Name: ${name ?? 'N/A'}');
print('Score: ${score ?? 0}');
print('Favorite Foods: ${foods ?? []}');
}Deleting Preferences
You can also remove stored preferences:
remove(key): Deletes a specific key-value pair.clear(): Deletes ALL data stored by your app usingshared_preferences. Use with caution!
Both methods are asynchronous and return a Future<bool> indicating success.
Quick Check
You want to store a user's preferred language, which is a single string like 'en_US' or 'es_ES'. Which shared_preferences method is the most appropriate for saving this data?
Recap & Next Steps
Great job! You've learned how to use shared_preferences to store and retrieve small, simple data locally in your Flutter applications.
- It's ideal for user settings and preferences.
- Supports basic types: bool, int, double, string, and List<String>.
- Operations are asynchronous (use
await). - Remember to handle null values when retrieving data.
Next, you'll explore more structured data storage with SQLite databases!
자주 묻는 질문
“데이터를 위한 Shared Preferences” 강의는 무료인가요?
네 — “데이터를 위한 Shared Preferences” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Flutter Mobile Development 강의 전체를 잠금 해제할 수 있습니다. Flutter Mobile Development 강의에는 총 4개의 강의가 포함되어 있습니다.
“데이터를 위한 Shared Preferences”에서 뭘 배우나요?
`shared_preferences`를 사용해 사용자 설정 및 환경설정과 같은 소량의 데이터를 키-값 쌍으로 로컬에 저장합니다. 브라우저에서 직접 실행하는 실습 코드로 Flutter Mobile Development을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Flutter Mobile Development을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Flutter Mobile Development은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.
“데이터를 위한 Shared Preferences” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Flutter Mobile Development 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Flutter Mobile Development 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 데이터를 위한 Shared Preferences
- SQLite 데이터베이스 통합
- 파일 시스템 작업
- Hive와 NoSQL 로컬 저장소