Advertisement
mitrakov

Iconbutton with shadow

Jul 21st, 2020
1,693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.53 KB | None | 0 0
  1. Widget drawIcon(IconData icon, size) {
  2.   return Material(
  3.     color: Colors.lightBlue,
  4.     shape: CircleBorder(),
  5.     shadowColor: Colors.black,
  6.     elevation: 20,
  7.     child: Ink(
  8.       width: size,
  9.       height: size,
  10.       decoration: const ShapeDecoration(
  11.         color: Colors.white,
  12.         shape: CircleBorder(),
  13.       ),
  14.       child: IconButton(
  15.         padding: EdgeInsets.all(0),
  16.         iconSize: 22,
  17.         icon: Icon(icon),
  18.         color: Colors.black,
  19.         onPressed: onTap,
  20.       ),
  21.     ),
  22.   );
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement