mod: show dyn gif emote

mod: emote tabbar

opt: video progress indicator

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-02-11 18:12:19 +08:00
parent 4267a3b8e0
commit a9ba30b9b9
5 changed files with 11 additions and 7 deletions

View File

@@ -4,11 +4,11 @@ Widget videoProgressIndicator(double progress) => ClipRect(
clipper: ProgressClipper(),
child: ClipRRect(
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(12),
bottomRight: Radius.circular(12),
bottomLeft: Radius.circular(10),
bottomRight: Radius.circular(10),
),
child: LinearProgressIndicator(
minHeight: 12,
minHeight: 10,
value: progress,
),
),
@@ -17,7 +17,7 @@ Widget videoProgressIndicator(double progress) => ClipRect(
class ProgressClipper extends CustomClipper<Rect> {
@override
Rect getClip(Size size) {
return Rect.fromLTWH(0, 8, size.width, size.height - 8);
return Rect.fromLTWH(0, 6, size.width, size.height - 6);
}
@override