kBaseElevatedButtonThemeData property

ElevatedButtonThemeData get kBaseElevatedButtonThemeData

Implementation

ElevatedButtonThemeData get kBaseElevatedButtonThemeData =>
    ElevatedButtonThemeData(
      style: ElevatedButton.styleFrom(
        foregroundColor: _colorScheme.onPrimary,
        shape: const RoundedRectangleBorder(
          borderRadius: BorderRadius.all(RadiusUtils.k2Radius),
        ),
        backgroundColor: _colorScheme.primary,
        padding: PaddingUtils.k12Vertical,
      ),
    );