【发布时间】:2022-01-20 17:09:23
【问题描述】:
我想在搜索栏边缘和搜索图标之间添加一些填充...有人可以告诉我如何添加吗?下面是我的代码......非常感谢。
Expanded(
child: Padding(
padding: EdgeInsets.only(
right: w * 0.02,
left: w * 0.05,
),
child: CupertinoTextField(
onChanged: (v) {
setState(() {});
},
padding: EdgeInsets.all(10.0),
autofocus: true,
controller: searchAppTextEditingController,
placeholder: 'Search for an app',
prefix: Icon(
Icons.search,
color: Colors.blueGrey,
size: 20.0,
),
),
),
),
【问题讨论】:
标签: search flutter-layout textfield