mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
feat(Linux): Automatically build a Flatpak bundle (#125)
Co-authored-by: PartyDonut <42371342+PartyDonut@users.noreply.github.com>
This commit is contained in:
parent
0ec2d10ce8
commit
523476bd08
10 changed files with 292 additions and 6 deletions
|
|
@ -27,7 +27,7 @@ class SimpleVideoPlayer extends ConsumerStatefulWidget {
|
|||
|
||||
class _SimpleVideoPlayerState extends ConsumerState<SimpleVideoPlayer> with WindowListener, WidgetsBindingObserver {
|
||||
final Player player = Player(
|
||||
configuration: const PlayerConfiguration(libass: true),
|
||||
configuration: const PlayerConfiguration(title: "nl.jknaapen.fladder", libass: true),
|
||||
);
|
||||
late VideoController controller = VideoController(player);
|
||||
late String videoUrl = "";
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ class MediaControlsWrapper extends MediaPlayback implements MediaControlBase {
|
|||
|
||||
final newPlayer = Player(
|
||||
configuration: PlayerConfiguration(
|
||||
title: "nl.jknaapen.fladder",
|
||||
bufferSize: 64 * 1024 * 1024,
|
||||
libassAndroidFont: 'assets/fonts/mp-font.ttf',
|
||||
libass: !kIsWeb &&
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ class MediaControlsWrapper extends MediaPlayback implements MediaControlBase {
|
|||
|
||||
final newPlayer = Player(
|
||||
configuration: PlayerConfiguration(
|
||||
title: "nl.jknaapen.fladder",
|
||||
bufferSize: 64 * 1024 * 1024,
|
||||
libassAndroidFont: 'assets/fonts/mp-font.ttf',
|
||||
libass: ref.read(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue