我需要添加一个文本字段,该字段具有 3 个侧面圆形和一个顶部右侧与正常矩形边。我正在尝试使用给我边框的 OutlineInputBorder 来做到这一点。但是我需要实现这个设计。
由于我没有足够的声誉,我不允许添加图像。如果有人帮助我,这将很有帮助。
new Theme(
data: new ThemeData(
primaryColor: Colors.blue,
),
child: TextFormField(
style: new TextStyle(
color: Color(0xff651515),
),
autofocus: false,
obscureText: false,
keyboardType: TextInputType.text,
decoration: InputDecoration(
filled: true,
border: new OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(10))
),
fillColor: Colors.black12,
labelText: TextDisplayConstants.EMAIL,
labelStyle: TextStyle(
color: Color(0xffa4a4a4),
fontSize: 14,
),
),[enter image description here][1]
),
),