【发布时间】:2022-01-23 22:02:10
【问题描述】:
我正在尝试创建一个以图像为背景的自定义按钮,但是我遇到了一个问题,并且按钮变小并以图像为中心会产生不良影响。最好的方法是什么?另外最好不要有点击的背景色效果。
Container(
width: double.infinity,
height: 40,
alignment: Alignment.center,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/images/btn_bg.jpg')
)
),
child: TextButton(
child: Text("test"),
onPressed: () {},
)
),
【问题讨论】:
-
你用图标按钮试过了吗
标签: flutter