SettingsRowStyle constructor

const SettingsRowStyle({
  1. bool noPadding = false,
  2. double fontSize = 17.0,
  3. Color backgroundColor = CupertinoColors.systemBackground,
  4. Color textColor = CupertinoColors.label,
  5. Color activeColor = CupertinoColors.systemBlue,
  6. Color disabledColor = CupertinoColors.inactiveGray,
  7. Color topTitleColor = CupertinoColors.systemBlue,
  8. Color highlightColor = CupertinoColors.systemGrey6,
  9. double contentPadding = 15.0,
})

Style modification options for the setting control

Implementation

const SettingsRowStyle({
  this.noPadding = false,
  this.fontSize = 17.0,
  this.backgroundColor = CupertinoColors.systemBackground,
  this.textColor = CupertinoColors.label,
  this.activeColor = CupertinoColors.systemBlue,
  this.disabledColor = CupertinoColors.inactiveGray,
  this.topTitleColor = CupertinoColors.systemBlue,
  this.highlightColor = CupertinoColors.systemGrey6,
  this.contentPadding = 15.0,
});