TextWithBadgeButtonMode constructor
TextWithBadgeButtonMode({ - String accessibilityDescription = "?accessibilityDescriptionCameraPreviewButton",
- StyledText? text,
- BadgeStyle? pageCounter,
})
Implementation
TextWithBadgeButtonMode({
this.accessibilityDescription =
"?accessibilityDescriptionCameraPreviewButton",
StyledText? text,
BadgeStyle? pageCounter,
}) : text = text ??
StyledText(
text: "?cameraBadgedPreviewButtonTitle",
color: ScanbotColor("?sbColorOnPrimary")),
pageCounter = pageCounter ??
BadgeStyle(
visible: true,
background: BackgroundStyle(
strokeColor: ScanbotColor("?sbColorSurface"),
fillColor: ScanbotColor("?sbColorSurface")),
foregroundColor: ScanbotColor("?sbColorPrimary")),
super();