英文:
I have a CircularProgressIndicator in my TextFormField's suffix icon. How to make it smaller?
问题
我在TextFormField
的后缀图标中有一个CircularProgressIndicator
,我想要让它变小。
我的代码:
TextFormField(
…
decoration: InputDecoration(
…
suffixIcon: const SizedBox(
height: 10,
width: 10,
child: CircularProgressIndicator(),
),
),
),
我尝试了上面的代码,但它没有起作用。
英文:
I have a CircularProgressIndicator
in my TextFormField
's suffix icon. I want to make it smaller.
My code:
TextFormField(
…
decoration: InputDecoration(
…
suffixIcon: const SizedBox(
height: 10,
width: 10,
child: CircularProgressIndicator(),
),
),
),
I tried the code above but it didn't work.
答案1
得分: 1
使用Suffix
而不是SuffixIcon
英文:
Use Suffix
instead of SuffixIcon
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论