mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 13:38:13 -08:00
chore: small changes
This commit is contained in:
parent
fb84a48777
commit
2888896d18
3 changed files with 14 additions and 4 deletions
2
.github/release.yml
vendored
2
.github/release.yml
vendored
|
|
@ -5,7 +5,7 @@ changelog:
|
||||||
categories:
|
categories:
|
||||||
- title: Exciting New Features 🏕
|
- title: Exciting New Features 🏕
|
||||||
labels:
|
labels:
|
||||||
- enhancement
|
- feature
|
||||||
- title: Bugfixes 🐞
|
- title: Bugfixes 🐞
|
||||||
labels:
|
labels:
|
||||||
- bug
|
- bug
|
||||||
|
|
|
||||||
|
|
@ -300,9 +300,13 @@ class _VideoPlayerNextWrapperState extends ConsumerState<VideoPlayerNextWrapper>
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (AdaptiveLayout.of(context).isDesktop)
|
if (AdaptiveLayout.of(context).isDesktop)
|
||||||
const Align(
|
AnimatedOpacity(
|
||||||
alignment: Alignment.topRight,
|
duration: animSpeed,
|
||||||
child: DefaultTitleBar(),
|
opacity: show ? 1 : 0,
|
||||||
|
child: const Align(
|
||||||
|
alignment: Alignment.topRight,
|
||||||
|
child: DefaultTitleBar(),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,12 @@ class _DesktopControlsState extends ConsumerState<DesktopControls> {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
timer.reset();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final introSkipModel = ref.watch(playBackModel.select((value) => value?.introSkipModel));
|
final introSkipModel = ref.watch(playBackModel.select((value) => value?.introSkipModel));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue