Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用“Step”小部件的“Stepper”小部件的实现过程中,我无法分配“null”标题,它需要一个“Text”。如何在“步骤”中分配标题“空”,以便标题的步骤之间没有间距。
示例:步骤(标题:null,内容:_stepOne(),)
Adding an empty string text widget will do the magic, see code below
Step( title: TExt(''), content: _stepOne(), )