darkOutlinedButtonTheme property

OutlinedButtonThemeData darkOutlinedButtonTheme
final

Implementation

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