lightOutlinedButtonTheme property

OutlinedButtonThemeData lightOutlinedButtonTheme
final

Implementation

static final lightOutlinedButtonTheme  = OutlinedButtonThemeData(
  style: OutlinedButton.styleFrom(
    foregroundColor: tSecondaryColor,
    side: const BorderSide(color: tSecondaryColor),
    padding: const EdgeInsets.symmetric(vertical: tButtonHeight),
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(tBorderRadius)),
  ),
);