v1.22 之后移除的已弃用 API
- 摘要
- 变更
- CupertinoDialog
- Cupertino 导航栏的 actionsForegroundColor
- CupertinoTextThemeData.brightness
- 从 HoverEvent 构造的 Pointer 事件
- showDialog 使用 builder
- Scaffold.resizeToAvoidBottomPadding
- ButtonTheme.bar
- InlineSpan、TextSpan、PlaceholderSpan
- RenderView.scheduleInitialFrame
- Layer.findAll
- BinaryMessages
- BuildContext 的泛型方法
- WidgetsBinding.deferFirstFrameReport & WidgetsBinding.allowFirstFrameReport
- WaitUntilNoTransientCallbacks、WaitUntilNoPendingFrame & WaitUntilFirstFrameRasterized
- 时间线
摘要
#根据 Flutter 的 弃用策略,在 1.22 稳定版发布后已达到生命周期结束的已弃用 API 已被移除。这是 Flutter 首次移除已弃用 API,其中一些弃用是在迁移指南策略之前发生的。
所有受影响的 API 都已编译到此主要资源中,以帮助进行迁移。也提供了一个 快速参考表。
有关 Flutter 弃用策略的更多上下文,请参阅 设计文档 和 文章。
变更
#本节列出了按受影响类列出的弃用。
CupertinoDialog
#修复工具支持:仅 IDE 修复。
CupertinoDialog
在 v0.2.3 中已弃用。请改用 CupertinoAlertDialog
或 CupertinoPopupSurface
。
迁移指南
CupertinoAlertDialog
迁移前的代码
CupertinoDialog(child: myWidget);
迁移后的代码
CupertinoAlertDialog(content: myWidget);
CupertinoPopupSurface
迁移前的代码
CupertinoDialog(child: myWidget);
迁移后的代码
CupertinoPopupSurface(child: myWidget);
参考
API 文档
相关问题
相关 PR
Cupertino 导航栏的 actionsForegroundColor
#修复工具支持:否
CupertinoNavigationBar.actionsForegroundColor
和 CupertinoSliverNavigationBar.actionsForegroundColor
在 v1.1.2 中已弃用。设置 CupertinoTheme
中的 primaryColor
会改为传播此属性。要访问 primaryColor
,请调用 CupertinoTheme.of(context).primaryColor
。
迁移指南
迁移前的代码
CupertinoNavigationBar(
actionsForegroundColor: CupertinoColors.systemBlue,
);
CupertinoSliverNavigationBar(
actionsForegroundColor: CupertinoColors.systemBlue,
);
迁移后的代码
CupertinoTheme(
data: CupertinoThemeData(
primaryColor: CupertinoColors.systemBlue
),
child: ...
);
// To access the color from the `CupertinoTheme`
CupertinoTheme.of(context).primaryColor;
参考
API 文档
相关问题
相关 PR
CupertinoTextThemeData.brightness
#修复工具支持:是
CupertinoTextThemeData.brightness
在 v1.10.14 中已弃用。此字段成员在弃用时已失效。此参数没有替代方案,应移除引用。
迁移指南
迁移前的代码
const CupertinoTextThemeData themeData = CupertinoTextThemeData(brightness: Brightness.dark);
themeData.copyWith(brightness: Brightness.light);
迁移后的代码
const CupertinoTextThemeData themeData = CupertinoTextThemeData();
themeData.copyWith();
参考
API 文档
相关问题
相关 PR
从 fromHoverEvent
构造的 Pointer 事件
#修复工具支持:是
PointerEnterEvent
和 PointerExitEvent
的 fromHoverEvent
构造函数在 v1.4.3 中已弃用。应改用 fromMouseEvent
构造函数。
迁移指南
迁移前的代码
final PointerEnterEvent enterEvent = PointerEnterEvent.fromHoverEvent(PointerHoverEvent());
final PointerExitEvent exitEvent = PointerExitEvent.fromHoverEvent(PointerHoverEvent());
迁移后的代码
final PointerEnterEvent enterEvent = PointerEnterEvent.fromMouseEvent(PointerHoverEvent());
final PointerExitEvent exitEvent = PointerExitEvent.fromMouseEvent(PointerHoverEvent());
参考
API 文档
相关问题
相关 PR
showDialog
使用 builder
#修复工具支持:是
showDialog
的 child
参数在 v0.2.3 中已弃用。应改用 builder
参数。
迁移指南
迁移前的代码
showDialog(child: myWidget);
迁移后的代码
showDialog(builder: (context) => myWidget);
参考
API 文档
相关问题
相关 PR
Scaffold.resizeToAvoidBottomPadding
#修复工具支持:是
Scaffold
的 resizeToAvoidBottomPadding
参数在 v1.1.9 中已弃用。应改用 resizeToAvoidBottomInset
参数。
迁移指南
迁移前的代码
Scaffold(resizeToAvoidBottomPadding: true);
迁移后的代码
Scaffold(resizeToAvoidBottomInset: true);
参考
API 文档
相关问题
- 嵌套 Scaffold 时显示警告
- 带键盘的 SafeArea
- 双层堆叠的 Material Scaffold 不应双重使用 resizeToAvoidBottomPadding
- Window 和 MediaQueryData 上的 viewInsets 和 padding 应定义它们如何交互
- 在 TabBarView 内部使用文本字段时出现底部溢出问题
相关 PR
ButtonTheme.bar
#修复工具支持:否
ButtonTheme
的 bar
构造函数在 v1.9.1 中已弃用。对于 ButtonBar
,可以使用 ButtonBarTheme
,或者如果使用不特定于 ButtonBar
,则可以使用 ButtonTheme
的其他构造函数。
还可以使用 TextButtonTheme
、ElevatedButtonTheme
和 OutlinedButtonTheme
类(分别对应相应的按钮类 TextButton
、ElevatedButton
和 OutlinedButton
)进行按钮特定主题设置。
迁移指南
迁移前的代码
ButtonTheme.bar(
minWidth: 10.0,
alignedDropdown: true,
height: 40.0,
);
使用 ButtonTheme
的迁移后代码
ButtonTheme(
minWidth: 10.0,
alignedDropdown: true,
height: 40.0,
);
使用 ButtonBarTheme
的迁移后代码
ButtonBarTheme(
data: ButtonBarThemeData(
buttonMinWidth: 10.0,
buttonAlignedDropdown: true,
buttonHeight: 40.0,
)
);
参考
API 文档
ButtonTheme
ButtonBarTheme
ButtonBar
TextButtonTheme
TextButton
ElevatedButtonTheme
ElevatedButton
OutlinedButtonTheme
OutlinedButton
相关问题
- ButtonTheme.bar 在应该使用主色调时使用强调色调
- ThemeData.accentColor 对文本的对比度不足
- 由于 materialTapTargetSize 的更改导致 AlertDialog/ButtonBar 高度增加
相关 PR
InlineSpan
、TextSpan
、PlaceholderSpan
#修复工具支持:否
为了能够像图像一样在段落中内联嵌入 Widget,以下方法在 InlineSpan
、TextSpan
和 PlaceholderSpan
中已弃用。
迁移指南
迁移前的代码 | 迁移后的代码 |
---|---|
InlineSpan.text | TextSpan.text |
InlineSpan.children | TextSpan.children |
InlineSpan.visitTextSpan | InlineSpan.visitChildren |
InlineSpan.recognizer | TextSpan.recognizer |
InlineSpan.describeSemantics | InlineSpan.computeSemanticsInformation |
PlaceholderSpan.visitTextSpan | PlaceHolderSpan.visitChildren |
TextSpan.visitTextSpan | TextSpan.visitChildren |
参考
API 文档
相关问题
相关 PR
RenderView.scheduleInitialFrame
#修复工具支持:否
RenderView.scheduleInitialFrame
方法已弃用并移除,以防止过早关闭启动画面,从而导致黑屏。当调用 WidgetsFlutterBinding.ensureInitialized
时会发生这种情况。请改用 RenderView.prepareInitialFrame
,然后是 RenderView.owner.requestVisualUpdate
来替换对该方法的调用。
迁移指南
迁移前的代码
scheduleInitialFrame();
迁移后的代码
prepareInitialFrame();
owner.requestVisualUpdate();
参考
API 文档
相关问题
相关 PR
Layer.findAll
#修复工具支持:否
为了统一 find
和 findAll
的实现,Layer.findAll
方法在引入 Layer.findAnnotations
时已弃用。要迁移受影响的代码,请改用 findAllAnnotations
。此方法返回一个 AnnotationResult
,其中包含 AnnotationResult.annotations
中 findAll
的先前返回值。
迁移指南
迁移前的代码
findAll(offset);
迁移后的代码
findAllAnnotations(offset).annotations;
参考
API 文档
相关问题
相关 PR
BinaryMessages
#修复工具支持:否
BinaryMessages
类、其关联的静态方法和 defaultBinaryMessenger
getter 已弃用并移除。defaultBinaryMessenger
实例已移至 ServicesBinding
。这使得在测试环境下注册不同的默认 BinaryMessenger
成为可能,方法是为测试创建 ServicesBinding
子类。这样做允许您跟踪挂起的平台消息的数量以进行同步目的。
迁移指南
迁移前的代码 | 迁移后的代码 |
---|---|
defaultBinaryMessenger | ServicesBinding.instance.defaultBinaryMessenger |
BinaryMessages | BinaryMessenger |
BinaryMessages.handlePlatformMessage | ServicesBinding.instance.defaultBinaryMessenger.handlePlatformMessage |
BinaryMessages.send | ServicesBinding.instance.defaultBinaryMessenger.send |
BinaryMessages.setMessageHandler | ServicesBinding.instance.defaultBinaryMessenger.setMessageHandler |
BinaryMessages.setMockMessageHandler | ServicesBinding.instance.defaultBinaryMessenger.setMockMessageHandler |
参考
API 文档
相关问题
相关 PR
BuildContext
的泛型方法
#修复工具支持:是
BuildContext
中的几个方法使用 Type
搜索祖先。大多数这些方法在调用站点隐含了强制转换,因为它们的返回类型是父类型。此外,即使类型实际上受到约束,在分析时也不会检查提供的类型。将这些方法设为泛型可以提高类型安全性并减少代码量。
这些方法更改会影响 BuildContext
、Element
和 StatefulElement
类。TypeMatcher
类也被移除。
迁移指南
迁移前的代码
ComplexLayoutState state = context.ancestorStateOfType(const TypeMatcher<ComplexLayoutState>()) as ComplexLayoutState;
迁移后的代码
ComplexLayoutState state = context.ancestorStateOfType<ComplexLayoutState>();
BuildContext
迁移前的代码 | 迁移后的代码 |
---|---|
inheritFromElement | dependOnInheritedElement |
inheritFromWidgetOfExactType | dependOnInheritedWidgetOfExactType |
ancestorInheritedElementForWidgetOfExactType | getElementForInheritedWidgetOfExactType |
ancestorWidgetOfExactType | findAncestorWidgetOfExactType |
ancestorStateOfType | findAncestorStateOfType |
rootAncestorStateOfType | findRootAncestorStateOfType |
ancestorRenderObjectOfType | findAncestorRenderObjectOfType |
Element
迁移前的代码 | 迁移后的代码 |
---|---|
inheritFromElement | dependOnInheritedElement |
inheritFromWidgetOfExactType | dependOnInheritedWidgetOfExactType |
ancestorInheritedElementForWidgetOfExactType | getElementForInheritedWidgetOfExactType |
ancestorWidgetOfExactType | findAncestorWidgetOfExactType |
ancestorStateOfType | findAncestorStateOfType |
rootAncestorStateOfType | findRootAncestorStateOfType |
ancestorRenderObjectOfType | findAncestorRenderObjectOfType |
StatefulElement
迁移前的代码 | 迁移后的代码 |
---|---|
inheritFromElement | dependOnInheritedElement |
参考
API 文档
相关 PR
WidgetsBinding.deferFirstFrameReport
& WidgetsBinding.allowFirstFrameReport
#修复工具支持:是
为了提供延迟渲染第一帧的选项,WidgetsBinding
的 deferFirstFrameReport
和 allowFirstFrameReport
方法已弃用并移除。这对于需要异步获取初始化信息的 Widget 很有用,并且当它们等待该信息时,不应渲染任何帧,因为这会导致过早关闭启动画面。应分别改用 deferFirstFrame
和 allowFirstFrame
方法。
迁移指南
迁移前的代码
final WidgetsBinding binding = WidgetsBinding.instance;
binding.deferFirstFrameReport();
binding.allowFirstFrameReport();
迁移后的代码
final WidgetsBinding binding = WidgetsBinding.instance;
binding.deferFirstFrame();
binding.allowFirstFrame();
参考
API 文档
相关 PR
WaitUntilNoTransientCallbacks
、WaitUntilNoPendingFrame
和 WaitUntilFirstFrameRasterized
#修复工具支持:否
flutter_driver
包中的 WaitUntilNoTransientCallbacks
、WaitUntilNoPendingFrame
和 WaitUntilFirstFrameRasterized
方法已弃用并移除,以便提供更具组合性的 waitForCondition
API,该 API 可用于组合客户端想要等待的条件。
迁移指南
迁移前的代码 | 迁移后的代码 |
---|---|
WaitUntilNoTransientCallbacks | WaitForCondition(NoTransientCallbacks()) |
WaitUntilNoPendingFrame | WaitForCondition(NoPendingFrame()) |
WaitUntilFirstFrameRasterized | WaitForCondition(FirstFrameRasterized) |
参考
API 文档
相关问题
相关 PR
时间线
#稳定版本:2.0.0
除非另有说明,否则本网站上的文档反映了 Flutter 的最新稳定版本。页面最后更新于 2024-06-01。 查看源代码 或 报告问题.