gpt4 book ai didi

flutter - 错误使用父数据小部件。展开的小部件必须放在弹性小部件内

转载 作者:IT王子 更新时间:2023-10-29 07:22:31 27 4
gpt4 key购买 nike

我收到以下错误:

即..,抛出另一个异常:ParentDataWidget 的使用不正确。在手机屏幕上显示错误。

 @override
Widget build(BuildContext context) {

return MaterialApp(
title: widget.title,
theme: ThemeData.light().copyWith(
platform: _platform ?? Theme.of(context).platform,
),
home: DefaultTabController(
length: categoryNames.length,
child: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: SafeArea(
child: Column(
children: <Widget>[
Chewie(
controller: _chewieController,
),
TabBar(
labelColor:Colors.black,
tabs: categoryNames,
),
Expanded(
child: TabBarView(
children: [
ImageList()
],
),
)
/*TabBarView(
children: [
Icon(Icons.directions_car),
Icon(Icons.directions_transit),
Icon(Icons.directions_bike),
],
)*/
],
)
),
),
),
);
}

这是我的代码,请检查并告诉我问题。

最佳答案

Expanded 不能在 Stack 中使用。

您应该只在ColumnRowFlex 中使用Expanded

关于flutter - 错误使用父数据小部件。展开的小部件必须放在弹性小部件内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54905388/

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