-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af765fa
commit 88f16dd
Showing
6 changed files
with
120 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import 'package:shared_preferences/shared_preferences.dart'; | ||
|
||
extension SPKeys on SharedPreferences { | ||
static const directory = 'directory'; | ||
static const downloads = 'downloadsCustomDir'; | ||
static const localAudioIndex = 'localAudioIndex'; | ||
static const neverShowImportFails = 'neverShowImportFails'; | ||
static const enableDiscord = 'enableDiscordRPC'; | ||
static const enableLastFm = 'enableLastFmScrobbling'; | ||
static const lastFmApiKey = 'lastFmApiKey'; | ||
static const lastFmSecret = 'lastFmSecret'; | ||
static const lastFmSessionKey = 'lastFmSessionKey'; | ||
static const lastFmUsername = 'lastFmUsername'; | ||
static const enableListenBrainz = 'enableListenBrainzScrobbling'; | ||
static const listenBrainzApiKey = 'listenBrainzApiKey'; | ||
static const lastCountryCode = 'lastCountryCode'; | ||
static const lastLanguageCode = 'lastLanguageCode'; | ||
static const usePodcastIndex = 'usePodcastIndex'; | ||
static const themeIndex = 'themeIndex'; | ||
static const podcastIndexApiKey = 'podcastIndexApiKey'; | ||
static const podcastIndexApiSecret = 'podcastIndexApiSecret'; | ||
static const favRadioTags = 'favRadioTags'; | ||
static const favCountryCodes = 'favCountryCodes'; | ||
static const favLanguageCodes = 'favLanguageCodes'; | ||
static const ascendingFeeds = 'ascendingfeed:::'; | ||
static const patchNotesDisposed = 'kPatchNotesDisposed'; | ||
static const closeBtnAction = 'closeBtnAction'; | ||
static const useMoreAnimations = 'useMoreAnimations'; | ||
static const showPositionDuration = 'showPositionDuration'; | ||
static const notifyDataSafeMode = 'notifyDataSafeMode'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.