textButtonTheme property

TextButtonThemeData textButtonTheme

Implementation

TextButtonThemeData get textButtonTheme => TextButtonThemeData(
      style: TextButton.styleFrom(
        shape: buttonBorder,
        padding: buttonPadding,
        textStyle:  TextStyle(fontFamily: 'Roboto',
          fontWeight: FontWeight.w500,
          fontSize: 19,
          color: const DigitColors().light.primaryOrange,),
        foregroundColor: const DigitColors().light.primaryOrange,
      ),
    );