textButtonTheme property
TextButtonThemeData
get
textButtonTheme
Implementation
TextButtonThemeData get textButtonTheme => TextButtonThemeData(
style: TextButton.styleFrom(
foregroundColor: colorScheme.primary,
textStyle: textTheme.labelLarge?.copyWith(fontWeight: FontWeight.w600),
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 12),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
),
);