socialButtonTransparent method
Implementation
Widget socialButtonTransparent(Widget icon, String text, Color color) =>
GFButton(
onPressed: () {},
type: GFButtonType.transparent,
shape: shape,
size: size,
text: text,
blockButton: blockButton,
fullWidthButton: fullWidthButton,
onLongPress: onLongPress,
icon: icon,
color: color,
boxShadow: const BoxShadow(
color: Colors.black,
blurRadius: 10, // soften the shadow
spreadRadius: 7, //extend the shadow
offset: Offset(
5, // Move to right 10 horizontally
5, // Move to bottom 5 Vertically
),
),
);