socialButtonOutlined method

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

Implementation

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