bump: flutter:3.27.0 rust:1.83.0

This commit is contained in:
2024-12-14 13:48:24 +08:00
parent 4b70ec1914
commit c112a920ec
47 changed files with 187 additions and 160 deletions

View File

@ -10,7 +10,6 @@ import 'server.dart';
part 'server_qr_dialog_ui.g.dart';
@riverpod
class ServerQrState extends _$ServerQrState {
@override
@ -62,7 +61,7 @@ class ServerQrDialogUI extends HookConsumerWidget {
] else
Text(
S.current.input_method_scan_qr_code,
style: TextStyle(color: Colors.white.withOpacity(.8)),
style: TextStyle(color: Colors.white.withValues(alpha: .8)),
),
SizedBox(height: 24),
Row(
@ -97,7 +96,8 @@ class ServerQrDialogUI extends HookConsumerWidget {
hasMultipleUrls
? "${urls[index.value]} (${index.value + 1} / ${urls.length})"
: urls[index.value],
style: TextStyle(fontSize: 13, color: Colors.white.withOpacity(.6)),
style: TextStyle(
fontSize: 13, color: Colors.white.withValues(alpha: .6)),
),
],
),
@ -120,4 +120,4 @@ class ServerQrDialogUI extends HookConsumerWidget {
],
);
}
}
}