作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到的信息是:
Unable to connect to VM service at http://127.0.0.1:53932/pq_PklwHCMK=/:
getDartDevelopmentServiceVersio: (-32601)
Method not found,
getDartDevelopmentServiceVersio: (-32601)
Method not found
我尝试过的:
这已经工作了很多年,直到现在,我确实在 VScode 中看到 VScode 的 Dar 和 Flutter 在 1 小时前更新到 3.19.0,所以我降级了,但我仍然遇到同样的问题。
最佳答案
void main() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
runApp(const MyApp());
}
到
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
runApp(const MyApp());
}
并写入终端
flutter pub global activate devtools 0.9.6+3
和
dart pub global activate devtools 0.9.6+3
关于flutter - 连接到 Flutter DevTools 的 VM 服务时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65965672/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!