VersionCheckButtonStyle constructor
const
VersionCheckButtonStyle({
- EdgeInsets padding = const EdgeInsets.all(16),
- BoxDecoration? decoration,
- double borderRadius = 8.0,
- bool showIcon = true,
- IconData icon = Icons.info_outline,
- Color? iconColor,
- double iconSize = 24,
- Color? loadingColor,
- String title = 'Version',
- TextStyle? titleStyle,
- TextStyle? versionStyle,
- String hintText = 'Tap to check for updates',
- String checkingText = 'Checking...',
- TextStyle? hintStyle,
- Color? chevronColor,
Implementation
const VersionCheckButtonStyle({
this.padding = const EdgeInsets.all(16),
this.decoration,
this.borderRadius = 8.0,
this.showIcon = true,
this.icon = Icons.info_outline,
this.iconColor,
this.iconSize = 24,
this.loadingColor,
this.title = 'Version',
this.titleStyle,
this.versionStyle,
this.hintText = 'Tap to check for updates',
this.checkingText = 'Checking...',
this.hintStyle,
this.chevronColor,
});