theme property
Implementation
static ThemeData theme = ThemeData(
textButtonTheme: TextButtonThemeData(
style: TextButton.styleFrom(
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(28),
),
fixedSize: const Size(double.infinity, 56.0),
disabledBackgroundColor: const Color(0xFF828282),
backgroundColor: const Color(0xFF009BE7),
elevation: 0.0,
),
),
);