mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-11 12:37:46 +08:00
tweaks (#2032)
* fix: 1080p * opt: import export * opt: downloader * opt: skeleton * opt: parseColor * tweak * opt: sb seek * opt: rxn
This commit is contained in:
committed by
GitHub
parent
b7b40c557e
commit
f5dbfcec79
@@ -29,7 +29,7 @@ class FavNoteItem extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final theme = Theme.of(context);
|
||||
final colorScheme = ColorScheme.of(context);
|
||||
return Material(
|
||||
type: MaterialType.transparency,
|
||||
child: InkWell(
|
||||
@@ -71,7 +71,7 @@ class FavNoteItem extends StatelessWidget {
|
||||
),
|
||||
Positioned.fill(
|
||||
child: selectMask(
|
||||
theme,
|
||||
colorScheme,
|
||||
item.checked,
|
||||
),
|
||||
),
|
||||
@@ -100,7 +100,7 @@ class FavNoteItem extends StatelessWidget {
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
height: 1,
|
||||
color: theme.colorScheme.outline,
|
||||
color: colorScheme.outline,
|
||||
),
|
||||
),
|
||||
const Spacer(),
|
||||
@@ -110,7 +110,7 @@ class FavNoteItem extends StatelessWidget {
|
||||
style: TextStyle(
|
||||
fontSize: 13,
|
||||
height: 1,
|
||||
color: theme.colorScheme.outline,
|
||||
color: colorScheme.outline,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
@@ -34,7 +34,7 @@ class FavPgcItem extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final theme = Theme.of(context);
|
||||
final colorScheme = ColorScheme.of(context);
|
||||
return Material(
|
||||
type: MaterialType.transparency,
|
||||
child: Stack(
|
||||
@@ -86,7 +86,7 @@ class FavPgcItem extends StatelessWidget {
|
||||
),
|
||||
Positioned.fill(
|
||||
child: selectMask(
|
||||
theme,
|
||||
colorScheme,
|
||||
item.checked,
|
||||
borderRadius: const BorderRadius.all(
|
||||
Radius.circular(4),
|
||||
@@ -111,7 +111,7 @@ class FavPgcItem extends StatelessWidget {
|
||||
'${item.newEp!.indexShow}${item.isFinish == 0 && item.renewalTime?.isNotEmpty == true ? ',${item.renewalTime}' : ''}',
|
||||
style: TextStyle(
|
||||
fontSize: 13,
|
||||
color: theme.colorScheme.onSurfaceVariant,
|
||||
color: colorScheme.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
],
|
||||
@@ -123,7 +123,7 @@ class FavPgcItem extends StatelessWidget {
|
||||
item.progress!,
|
||||
style: TextStyle(
|
||||
fontSize: 13,
|
||||
color: theme.colorScheme.onSurfaceVariant,
|
||||
color: colorScheme.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
],
|
||||
@@ -141,7 +141,7 @@ class FavPgcItem extends StatelessWidget {
|
||||
iconSize: 18,
|
||||
onPressed: onUpdateStatus,
|
||||
icon: const Icon(Icons.more_vert),
|
||||
iconColor: theme.colorScheme.outline,
|
||||
iconColor: colorScheme.outline,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user