- Create, edit, and delete notes
- Save notes using shared preferences
- Simple and intuitive user interface
- Flutter
- Shared Preferences package
- Install the app on your device.
- Open the app and start creating notes.
- Your notes will be saved automatically using shared preferences.
// Example code to save and retrieve data using shared preferences
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
void saveData(String key, String value) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.setString(key, value);
}
Future<String?> getData(String key) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return prefs.getString(key);
}