bump flutter (#859)

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
dom
2025-05-16 23:05:02 +08:00
committed by GitHub
parent cf0bf1e587
commit 7ae92970ef
96 changed files with 604 additions and 521 deletions

View File

@@ -118,7 +118,8 @@ class _ColorSelectPageState extends State<ColorSelectPage> {
height: 1,
fontSize: 13,
color: ctr.type.value == 0
? theme.colorScheme.outline.withOpacity(0.8)
? theme.colorScheme.outline
.withValues(alpha: 0.8)
: theme.colorScheme.secondary,
),
strutStyle: const StrutStyle(leading: 0, height: 1),
@@ -127,7 +128,8 @@ class _ColorSelectPageState extends State<ColorSelectPage> {
size: 20,
Icons.keyboard_arrow_right,
color: ctr.type.value == 0
? theme.colorScheme.outline.withOpacity(0.8)
? theme.colorScheme.outline
.withValues(alpha: 0.8)
: theme.colorScheme.secondary,
)
],
@@ -201,14 +203,14 @@ class _ColorSelectPageState extends State<ColorSelectPage> {
width: 46,
height: 46,
decoration: BoxDecoration(
color: e['color'].withOpacity(0.8),
color: e['color'].withValues(alpha: 0.8),
borderRadius: const BorderRadius.all(
Radius.circular(50)),
border: Border.all(
width: 2,
color: ctr.currentColor.value == index
? Colors.black
: e['color'].withOpacity(0.8),
: e['color'].withValues(alpha: 0.8),
),
),
child: AnimatedOpacity(

View File

@@ -67,7 +67,8 @@ class _FontSizeSelectPageState extends State<FontSizeSelectPage> {
decoration: BoxDecoration(
border: Border(
top: BorderSide(
color: theme.colorScheme.primary.withOpacity(0.3))),
color:
theme.colorScheme.primary.withValues(alpha: 0.3))),
color: theme.colorScheme.surface,
),
child: Row(