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

@ -155,7 +155,7 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
S.current.tools_rsi_launcher_enhance_msg_version(
assarState.value?.version ?? ""),
style: TextStyle(
color: Colors.white.withOpacity(.6),
color: Colors.white.withValues(alpha: .6),
),
),
),
@ -165,7 +165,7 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
? S.current.localization_info_installed
: S.current.tools_action_info_not_installed),
style: TextStyle(
color: Colors.white.withOpacity(.6),
color: Colors.white.withValues(alpha: .6),
),
)
],
@ -196,7 +196,7 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
.tools_rsi_launcher_enhance_subtitle_localization,
style: TextStyle(
fontSize: 13,
color: Colors.white.withOpacity(.6),
color: Colors.white.withValues(alpha: .6),
),
),
],
@ -283,7 +283,7 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
.tools_rsi_launcher_enhance_subtitle_download_booster,
style: TextStyle(
fontSize: 13,
color: Colors.white.withOpacity(.6),
color: Colors.white.withValues(alpha: .6),
),
),
],
@ -313,7 +313,7 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
Text(
S.current.tools_rsi_launcher_enhance_msg_uninstall,
style: TextStyle(
color: Colors.white.withOpacity(.6), fontSize: 13),
color: Colors.white.withValues(alpha: .6), fontSize: 13),
),
],
],
@ -414,13 +414,14 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
static StringBuffer _readArchive((String savePath, String fileName) data) {
final inputStream = InputFileStream(data.$1);
final archive =
TarDecoder().decodeBytes(GZipDecoder().decodeBuffer(inputStream));
final output = GZipDecoder().decodeBytes(inputStream.toUint8List());
final archive = TarDecoder().decodeBytes(output);
StringBuffer dataBuffer = StringBuffer("");
for (var element in archive.files) {
if (element.rawContent == null) continue;
final stringContent = utf8.decode(element.rawContent!.readBytes());
if (element.name.endsWith(data.$2)) {
for (var value
in (element.rawContent?.readString() ?? "").split("\n")) {
for (var value in (stringContent).split("\n")) {
final tv = value;
if (tv.isNotEmpty) dataBuffer.writeln(tv);
}
@ -479,4 +480,4 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
}
return scriptBuffer.toString();
}
}
}

View File

@ -106,7 +106,8 @@ class ToolsUI extends HookConsumerWidget {
children: [
Container(
decoration: BoxDecoration(
color: Colors.white.withOpacity(.2),
color:
Colors.white.withValues(alpha: .2),
borderRadius:
BorderRadius.circular(1000)),
child: Padding(
@ -128,7 +129,7 @@ class ToolsUI extends HookConsumerWidget {
item.infoString,
style: TextStyle(
fontSize: 14,
color: Colors.white.withOpacity(.6)),
color: Colors.white.withValues(alpha: .6)),
),
const SizedBox(height: 12),
Row(

View File

@ -59,7 +59,9 @@ class UnP4kcUI extends HookConsumerWidget {
children: [
Container(
decoration: BoxDecoration(
color: FluentTheme.of(context).cardColor.withOpacity(.06)),
color: FluentTheme.of(context)
.cardColor
.withValues(alpha: .06)),
height: 36,
padding: const EdgeInsets.only(left: 12, right: 12),
child: SuperListView.builder(
@ -95,7 +97,9 @@ class UnP4kcUI extends HookConsumerWidget {
Container(
width: MediaQuery.of(context).size.width * .3,
decoration: BoxDecoration(
color: FluentTheme.of(context).cardColor.withOpacity(.01),
color: FluentTheme.of(context)
.cardColor
.withValues(alpha: .01),
),
child: SuperListView.builder(
padding: const EdgeInsets.only(
@ -110,7 +114,7 @@ class UnP4kcUI extends HookConsumerWidget {
decoration: BoxDecoration(
color: FluentTheme.of(context)
.cardColor
.withOpacity(.05),
.withValues(alpha: .05),
),
child: IconButton(
onPressed: () {
@ -164,7 +168,7 @@ class UnP4kcUI extends HookConsumerWidget {
style: TextStyle(
fontSize: 10,
color: Colors.white
.withOpacity(.6)),
.withValues(alpha: .6)),
),
const SizedBox(width: 12),
Text(
@ -172,7 +176,7 @@ class UnP4kcUI extends HookConsumerWidget {
style: TextStyle(
fontSize: 10,
color: Colors.white
.withOpacity(.6)),
.withValues(alpha: .6)),
),
],
),
@ -184,7 +188,7 @@ class UnP4kcUI extends HookConsumerWidget {
Icon(
FluentIcons.chevron_right,
size: 14,
color: Colors.white.withOpacity(.6),
color: Colors.white.withValues(alpha: .6),
)
],
),