tree: 76269b780ed205c497ed0e0d8c1045d29b31b47c [path history] [tgz]
  1. example/
  2. macos/
  3. AUTHORS
  4. CHANGELOG.md
  5. LICENSE
  6. pubspec.yaml
  7. README.md
packages/shared_preferences/shared_preferences_macos/README.md

shared_preferences_macos

The macos implementation of shared_preferences.

Usage

Import the package

This package has been endorsed, meaning that you only need to add shared_preferences as a dependency in your pubspec.yaml. It will be automatically included in your app when you depend on package:shared_preferences.

This is what the above means to your pubspec.yaml:

...
dependencies:
  ...
  shared_preferences: ^0.5.6
  ...

If you wish to use the macos package only, you can add shared_preferences_macos as a dependency:

...
dependencies:
  ...
  shared_preferences_macos: ^0.0.1
  ...