我正在做“The Complete Flutter Development Bootcamp with Dart”,当我得到下面的错误时:
lib/main.dart:47:42:错误:位置参数太少:1 required,0 given. quizBrain. getString Text(),
我已经复制并粘贴了下面的相关小部件:
Expanded(
flex: 5,
child: Padding(
padding: EdgeInsets.all(10.0),
child: Center(
child: Text(
quizBrain.getQuestionText(),
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 25.0,
color: Colors.white,
),
),
),
),
),
字符串
我在网上找了一个解决方案,但找不到任何东西。
2条答案
按热度按时间gxwragnw1#
您的
quizBrain.getQuestionText()
需要传入参数。请检查其定义并提供参数。8yparm6h2#
需要1个位置参数,而您没有传递任何参数。
字符串