我想在IPython笔记本中添加一个切换代码单元选项。在下一个解决方案中,当我运行此代码单元时,默认情况下,所有代码单元现在都将被隐藏。
Expanded(
child: ListView.builder(
itemCount: widget.steps.length,
itemBuilder: (context, index) => Container(
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Text(
//"STEPS ${index + 1}",
"${widget.steps}",
],
),
),
),
),
但是有没有办法适应和显示单个代码单元?