mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-16 02:35:59 -07:00
feat: Implement next-up screen for native player (#533)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
parent
311b647286
commit
29b1c2e633
25 changed files with 782 additions and 203 deletions
|
|
@ -18,6 +18,7 @@ class PlayerSettings {
|
|||
final int? themeColor;
|
||||
final int skipForward;
|
||||
final int skipBackward;
|
||||
final AutoNextType autoNextType;
|
||||
|
||||
const PlayerSettings({
|
||||
required this.enableTunneling,
|
||||
|
|
@ -25,9 +26,16 @@ class PlayerSettings {
|
|||
required this.themeColor,
|
||||
required this.skipForward,
|
||||
required this.skipBackward,
|
||||
required this.autoNextType,
|
||||
});
|
||||
}
|
||||
|
||||
enum AutoNextType {
|
||||
off,
|
||||
static,
|
||||
smart,
|
||||
}
|
||||
|
||||
enum SegmentType {
|
||||
commercial,
|
||||
preview,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue