gpt4 book ai didi

flutter - 缺少state.build的具体实现

转载 作者:行者123 更新时间:2023-12-03 04:40:49 26 4
gpt4 key购买 nike

我在Dart中收到此错误:
“缺少“state.build”的具体实现”
第一种方法如下:

class MyHomePage extends StatefulWidget {
// String titleInput;
// String amountInput;
@override
MyHomePageState createState() => MyHomePageState();
}

class MyHomePageState extends State<MyHomePage> {
final List<Transaction> _userTransactions = [
// Transaction(
// id: "t1",
// title: "New Shoes",
// amount: 69.99,
// date: DateTime.now(),
// ),
// Transaction(
// id: "t2",
// title: "Weekly Groceries",
// amount: 16.53,
// date: DateTime.now(),
// ),
];
有谁知道此错误的含义以及如何解决?
谢谢。

最佳答案

您需要在小部件的build中添加State方法,该方法描述了小部件所代表的用户界面部分,例如,
(将此添加到MyHomePageState)

  @override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child:
Container(
height: 200,
width: 100,
color: Colors.yellow,
),
),
);
}

关于flutter - 缺少state.build的具体实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63246564/

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