大家好,我是新来的颤振并试图写成OR
如图所示的水平线,但我不知道该怎么做,我试图用谷歌搜索它,但这对我的
示例演示没有帮助
注: OR 居中
大家好,我是新来的颤振并试图写成OR
如图所示的水平线,但我不知道该怎么做,我试图用谷歌搜索它,但这对我的
示例演示没有帮助
注: OR 居中
试试下面的代码希望它对你有帮助。您必须使用这种(--或--)类型的设计扩展或灵活小部件
Padding(
padding: EdgeInsets.all(8.0),
child: Row(
children: [
Expanded(
child: Divider(
color: Colors.black,
thickness: 1,
),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text('OR'),
),
Expanded(
child: Divider(
color: Colors.black,
thickness: 1,
),
),
],
),
),