将切换代码添加到IPython笔记本中的单个单元格选项

时间:2020-07-18 04:15:34

标签: python jupyter-notebook

我想在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}",
                                        

                                    ],
                                  ),
                                ),
                              ),
                            ),

但是有没有办法适应和显示单个代码单元?

0 个答案:

没有答案