A Custom 3D Button in Flutter
import 'clicky_button/clicky_button.dart'
...
ClickyButton(
child: Text(
'Click Me!',
style: TextStyle(
color: Colors.white,
fontSize: 22),
),
color: Colors.green,
onPressed: () {},
)
...
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: () {},
),
)
...
Author: raj457036
GitHub: https://github.com/raj457036/Flutter-Clicky-Button
#dart #flutter #3d button