-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Screen does not stay on #781 #858
Merged
Chaphasilor
merged 13 commits into
jmshrv:redesign
from
Sp4rky001:Screen-does-not-stay-on-#781
Sep 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
65267af
Added: Ability to keep screen on while using app
816a858
Modified: Moved battery state determination into KeepScreenOnHelper …
dacc5f8
Used events where possible
5b6a90f
Revert lyrics_screen and music_player_background_task to redesign branch
e22c318
Small changes and adding generated files
a79b71d
Use wakelock_plus instead of KeepScreenOn package
4487674
Converted KeepScreenOnHelper to singleton rather than static class
a190247
Reverted to calling KeepScreenOnHelper from build and dispose of Lyic…
2094b2f
Merge branch 'Screen-does-not-stay-on-#781' into Convert-Helper-to-si…
068f900
Merge branch 'Screen-does-not-stay-on-#781' into Convert-Helper-to-si…
a1fce1d
Merge branch 'Convert-Helper-to-singleton' of https://github.com/Sp4r…
69574ed
Removed code that extends Navigator Observer.
d752502
Modified: Use NavigatorObserver to listen for lyrics screen show and …
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
lib/components/InteractionSettingsScreen/keep_screen_on_dropdown_list_tile.dart
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this doesn't actually change the default, just in which order the options appear. You can keep the order how it was, starting with
disabled
.To change the default, change it here: https://github.com/jmshrv/finamp/pull/858/files#diff-00fd4ef72cab57c7db5c49ff8cd257918492ca5650d72bec14b3ee8560fcad54R114
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yea, I looked up how to set default and I guess it's something like calling a constructor with the value?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's no way to set the default of an enum. But we use the enum as a value for a setting, and there's a place in
finamp_models.dart
where we specify the default settings value to be used, if no value has been selected yet.This will not change the selected value after the first start, unless you clear the app data and thereby delete the database.