socialButtonOutlined2x method

Widget socialButtonOutlined2x(
  1. Widget icon,
  2. String text,
  3. Color color
)

Implementation

Widget socialButtonOutlined2x(Widget icon, String text, Color color) =>
   GFButton(
    onPressed: () {},
    type: GFButtonType.outline2x,
    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
      ),
    ),
  );