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.
有没有办法改变步骤之间“线”的颜色?并且还删除填充以将“线”连接到步骤?
我怀疑。我认为你唯一的方法是创建你的 custom Stepper。正如您在源代码中看到的 -Stepper是 StatefulWidget 并且_StepperState是私有的(这些行是高度为 1.0 的容器) -
Stepper
_StepperState
Container( margin: const EdgeInsets.symmetric(horizontal: 8.0), height: 1.0, color: Colors.grey.shade400, )
我没有看到任何改变它的方法