使用flutter / dart,如何快速知道要为类导入的包/模块?
例如,查看Class RenderRepaintBoundary
及其文档页面:https://api.flutter.dev/flutter/rendering/RenderRepaintBoundary-class.html,我不知道如何导入它。
编译器错误看起来像
Error: 'RenderRepaintBoundary' isn't a type.
RenderRepaintBoundary boundary = ...
没有关于缺少进口的指针。 最佳答案
在文档的左上方,在本例中为RenderRepaintBoundary class,给出了一个类似的层次结构Flutter > rendering > RenderRepaintBoundary class
。
从那里可以找到特定类所属的包。
在这种情况下,单击rendering
将显示要导入的软件包。
关于flutter - 如何知道要导入的模块以使用类?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63046525/