chore: target android api 36

This commit is contained in:
Dr.Blank 2026-01-10 14:43:59 +05:30
parent 07aea41c6e
commit 06694f5f0b
No known key found for this signature in database
GPG key ID: BA5F87FF0560C57B
7 changed files with 64 additions and 66 deletions

View file

@ -1,29 +1,29 @@
// a table to track preferences of player for each book
import 'package:isar/isar.dart';
// // a table to track preferences of player for each book
// import 'package:isar/isar.dart';
part 'book_prefs.g.dart';
// part 'book_prefs.g.dart';
/// stores the preferences of the player for a book
@Collection()
@Name('BookPrefs')
class BookPrefs {
@Id()
int libItemId;
// /// stores the preferences of the player for a book
// @Collection()
// @Name('BookPrefs')
// class BookPrefs {
// @Id()
// int libItemId;
double? speed;
// double? volume;
// Duration? sleepTimer;
// bool? showTotalProgress;
// bool? showChapterProgress;
// bool? useChapterInfo;
// double? speed;
// // double? volume;
// // Duration? sleepTimer;
// // bool? showTotalProgress;
// // bool? showChapterProgress;
// // bool? useChapterInfo;
BookPrefs({
required this.libItemId,
this.speed,
// this.volume,
// this.sleepTimer,
// this.showTotalProgress,
// this.showChapterProgress,
// this.useChapterInfo,
});
}
// BookPrefs({
// required this.libItemId,
// this.speed,
// // this.volume,
// // this.sleepTimer,
// // this.showTotalProgress,
// // this.showChapterProgress,
// // this.useChapterInfo,
// });
// }