-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
Showing
3 changed files
with
89 additions
and
20 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
Empty file.
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,44 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class DesktopWatchPage extends StatefulWidget { | ||
final dynamic episodeSrc; | ||
final int animeId; | ||
final String sourceAnimeId; | ||
final ThemeData provider; | ||
final dynamic tracks; | ||
final String animeTitle; | ||
final String episodeTitle; | ||
final int currentEpisode; | ||
final dynamic episodeData; | ||
final String activeServer; | ||
final bool isDub; | ||
final String description; | ||
final String posterImage; | ||
|
||
const DesktopWatchPage({ | ||
super.key, | ||
required this.episodeSrc, | ||
required this.tracks, | ||
required this.provider, | ||
required this.animeTitle, | ||
required this.currentEpisode, | ||
required this.episodeTitle, | ||
required this.activeServer, | ||
required this.isDub, | ||
this.episodeData, | ||
required this.animeId, | ||
required this.sourceAnimeId, | ||
required this.description, | ||
required this.posterImage, | ||
}); | ||
|
||
@override | ||
State<DesktopWatchPage> createState() => _DesktopWatchPageState(); | ||
} | ||
|
||
class _DesktopWatchPageState extends State<DesktopWatchPage> { | ||
@override | ||
Widget build(BuildContext context) { | ||
return const Placeholder(); | ||
} | ||
} |