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