gpt4 book ai didi

flutter - 带编舞(11277) : Frame time is 13. 988632 ms future !检查图形 HAL 是否使用正确的时基生成 vsync 时间戳

转载 作者:行者123 更新时间:2023-12-04 11:40:28 35 4
gpt4 key购买 nike

W/Choreographer(11277): Frame time is 13.988632 ms in the future!  Check that graphics HAL is generating vsync timestamps using the correct timebase.
这是运行时产生的错误。
Flutter 未更新 setState内容并给出这个错误,
代码如下
    import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'dart:math';

void main() {
runApp(
MaterialApp(
home: Scaffold(
backgroundColor: Colors.redAccent,
appBar: AppBar(
backgroundColor: Colors.red,
title: Center(child: Text('Dicee')),
),
body: MyApp(),
),
),
);
}

class MyApp extends StatefulWidget {
@override
MyAppState createState() => MyAppState();
}

class MyAppState extends State<MyApp> {
int leftDiceNumber = 1;
@override
Widget build(BuildContext context) {
leftDiceNumber = 4;
return Center(
child: Row(
children: <Widget>[
Expanded(
child: FlatButton(
onPressed: () {
setState(() {
leftDiceNumber = (Random().nextInt(6) + 1);
print('images/dice$leftDiceNumber.png');
});
},
child: Image.asset('images/dice$leftDiceNumber.png'),
),
),
Expanded(
child: FlatButton(
onPressed: () {
setState(() {
leftDiceNumber = 5;
});
},
child: Image.asset('images/dice6.png'),
),
),
],
),
);
}
}
请帮我解决这个问题

最佳答案

就我而言,这是一个类型不匹配错误,显然记录器无法捕获。
我正在使用 int在我的 Model 类中,而在 firestore 中,该值在 String 中.
同步他们的类型解决了错误!

关于flutter - 带编舞(11277) : Frame time is 13. 988632 ms future !检查图形 HAL 是否使用正确的时基生成 vsync 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62683819/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com