sizes property

Map<String, dynamic> sizes
final

Implementation

final Map<String, dynamic> sizes = {
  "mini": <String, dynamic>{
    "fontSize": Style.buttonMiniFontSize,
    "padding": EdgeInsets.symmetric(horizontal: 2),
    "height": Style.buttonMiniHeight
  },
  "small": <String, dynamic>{
    "fontSize": Style.buttonSmallFontSize,
    "padding": EdgeInsets.symmetric(horizontal: 8),
    "height": Style.buttonSmallHeight
  },
  "normal": <String, dynamic>{
    "fontSize": Style.buttonDefaultFontSize,
    "padding": EdgeInsets.symmetric(horizontal: 15),
    "height": Style.buttonDefaultHeight
  },
  "large": <String, dynamic>{
    "fontSize": Style.buttonLargeFontSize,
    "padding": EdgeInsets.symmetric(horizontal: 24),
    "height": Style.buttonLargeHeight
  },
};