mod: 首页间距调整、弱化部分颜色

This commit is contained in:
orz12
2024-03-22 02:12:48 +08:00
parent b60d412b8c
commit e13f375246
6 changed files with 16 additions and 17 deletions

View File

@@ -40,7 +40,7 @@ class PBadge extends StatelessWidget {
color = Colors.white;
}
if (type == 'color') {
bgColor = t.primaryContainer.withOpacity(0.6);
bgColor = t.primaryContainer.withOpacity(0.5);
color = t.primary;
}
if (type == 'line') {

View File

@@ -13,8 +13,8 @@ class StatDanMu extends StatelessWidget {
Widget build(BuildContext context) {
Map<String, Color> colorObject = {
'white': Colors.white,
'gray': Theme.of(context).colorScheme.outline,
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.8),
'gray': Theme.of(context).colorScheme.outline.withOpacity(0.8),
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.7),
};
Color color = colorObject[theme]!;
return Row(

View File

@@ -14,8 +14,8 @@ class StatView extends StatelessWidget {
Widget build(BuildContext context) {
Map<String, Color> colorObject = {
'white': Colors.white,
'gray': Theme.of(context).colorScheme.outline,
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.8),
'gray': Theme.of(context).colorScheme.outline.withOpacity(0.8),
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.7),
};
Color color = colorObject[theme]!;
return Row(

View File

@@ -189,7 +189,7 @@ class VideoCardV extends StatelessWidget {
if (videoItem.goto == 'av')
Positioned(
right: 0,
bottom: 1,
bottom: 0,
child: VideoPopupMenu(
size: 30,
iconSize: 16,
@@ -206,7 +206,7 @@ class VideoContent extends StatelessWidget {
Widget build(BuildContext context) {
return Expanded(
child: Padding(
padding: const EdgeInsets.fromLTRB(5, 8, 5, 4),
padding: const EdgeInsets.fromLTRB(6, 5, 6, 5),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
@@ -219,7 +219,7 @@ class VideoContent extends StatelessWidget {
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
height: 1.42,
height: 1.38,
)),
),
],
@@ -268,7 +268,7 @@ class VideoContent extends StatelessWidget {
Expanded(
flex: 1,
child: Text(
videoItem.owner.name,
videoItem.owner.name.toString(),
// semanticsLabel: "Up主${videoItem.owner.name}",
maxLines: 1,
overflow: TextOverflow.clip,
@@ -321,7 +321,7 @@ class VideoStat extends StatelessWidget {
text: TextSpan(
style: TextStyle(
fontSize: Theme.of(context).textTheme.labelSmall!.fontSize,
color: Theme.of(context).colorScheme.outline,
color: Theme.of(context).colorScheme.outline.withOpacity(0.8),
),
text: Utils.formatTimestampToRelativeTime(videoItem.pubdate)),
),