linux build

cache previews in sqlite db
actor page
outsouce different players in seperate classes
This commit is contained in:
2022-08-28 22:51:12 +02:00
parent 41a133b6c4
commit 5fc77b4abb
22 changed files with 752 additions and 392 deletions

12
lib/types/video.dart Normal file
View File

@ -0,0 +1,12 @@
class VideoT {
int id;
String title;
double ratio;
VideoT(this.title, this.id, this.ratio);
factory VideoT.fromJson(dynamic json) {
return VideoT(json['MovieName'] as String, json['MovieId'] as int,
(json['Ratio'] as num).toDouble());
}
}