dart – Flutter:从没有上下文的InheritedWidgets访问数据?

前端之家收集整理的这篇文章主要介绍了dart – Flutter:从没有上下文的InheritedWidgets访问数据?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看到我可以在build()方法中访问InheritedWidgets,如下所示:final inheritedWidget = ChronoApp.of(context);但是如果我想在其他地方访问它,比如在initState()中没有上下文.我该怎么做?

解决方法

根据此文档,上下文应该在initState中使用上下文getter.

https://docs.flutter.io/flutter/widgets/State/context.html

The framework associates State objects with a BuildContext after creating them with StatefulWidget.createState and before calling initState.

原文链接:https://www.f2er.com/flutter/582180.html

猜你在找的Flutter相关文章