Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 378 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 378 Bytes

UserDefaultsClient

A dependency client that handles saving to and reading from UserDefaults in apps using the Swift Composable Architecture (TCA).

Usage

You need to implement a live value of UserDefaultsConfigClient in order to use it in your app.

extension UserDefaultsConfigClient: DependencyValue {
  static let liveValue = Self {
    .standard
  }
}