Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-25 13:18:59 +08:00
parent 525dce989b
commit 94063ab1f9
11 changed files with 175 additions and 187 deletions

View File

@@ -23,11 +23,11 @@ class AppBarAni extends StatelessWidget {
static const _topDecoration = LinearGradient(
begin: Alignment.bottomCenter,
end: Alignment.topCenter,
colors: <Color>[
colors: [
Colors.transparent,
Color(0xBF000000),
],
tileMode: TileMode.mirror,
tileMode: .mirror,
);
static final _bottomPos = Tween<Offset>(
@@ -38,11 +38,11 @@ class AppBarAni extends StatelessWidget {
static const _bottomDecoration = LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: <Color>[
colors: [
Colors.transparent,
Color(0xBF000000),
],
tileMode: TileMode.mirror,
tileMode: .mirror,
);
@override