Flutter 的 Clicky Button
Flutter中的自定义3D按钮。
演示

如何使用
import 'clicky_button/clicky_button.dart'
...
ClickyButton(
child: Text(
'Click Me!',
style: TextStyle(
color: Colors.white,
fontSize: 22),
),
color: Colors.green,
onPressed: () {},
)
...
要更改按钮的大小,只需将按钮包裹在 Transform.scale() 中
import 'clicky_button/clicky_button.dart'
...
Transform.scale(
scale: 0.6,
child: ClickyButton(
child: Text(
'Click Me!',
style: TextStyle(
color: Colors.white,
fontSize: 22),
),
color: Colors.green,
onPressed: () {},
),
)
...