flutter 3.44 pre

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-13 09:36:54 +08:00
parent 3ee60f9877
commit f6628cf2fe
31 changed files with 1284 additions and 327 deletions

View File

@@ -2,10 +2,6 @@ param(
[string]$platform = ""
)
# TODO: remove
# https://github.com/flutter/flutter/issues/182468
$ToolTipFix = "56956c33ef102ac0b5fc46b62bd2dd9f50a86616";
# TODO: remove
# https://github.com/flutter/flutter/issues/182281
$NewOverScrollIndicator = "362b1de29974ffc1ed6faa826e1df870d7bec75f";
@@ -20,6 +16,7 @@ $ScrollViewPatch = "lib/scripts/scroll_view.patch"
$TextSelectionPatch = "lib/scripts/text_selection.patch"
# https://github.com/bggRGjQaUbCoE/PiliPlus/issues/1947
$NavigatorPatch = "lib/scripts/navigator.patch"
$NavigationBarPatch = "lib/scripts/navigation_bar.patch"
@@ -63,13 +60,10 @@ switch ($platform.ToLower()) {
$patches += $BottomSheetIOSFlutterPatch
}
"linux" {
$picks += $ToolTipFix
}
"macos" {
$picks += $ToolTipFix
}
"windows" {
$picks += $ToolTipFix
}
default {}
}
@@ -105,10 +99,3 @@ foreach ($patch in $patches) {
Write-Host "$patch applied"
}
}
# TODO: remove
if ($platform.ToLower() -eq "android") {
"69e31205362b4e59b7eb89b24797e687b4b67afe" | Set-Content -Path .\bin\internal\engine.version
Remove-Item -Path ".\bin\cache" -Recurse -Force
flutter --version
}