denseAwareTextButtonStyle function
Implementation
ButtonStyle denseAwareTextButtonStyle(
BuildContext context, {
double? minScreenWidthForText,
}) {
final buttonStyle =
Theme.of(context).textButtonTheme.style ?? const ButtonStyle();
return _generateButtonStyle(
context: context,
buttonStyle: buttonStyle,
minScreenWidthForText: minScreenWidthForText,
);
}