data class SheetContent(var sheetColor: ScanbotColor = ScanbotColor("?sbColorSurface", isArgb = false), var dividerColor: ScanbotColor = ScanbotColor("?sbColorOutline", isArgb = false), var manualCountChangeEnabled: Boolean = true, var manualCountOutlineColor: ScanbotColor = ScanbotColor("?sbColorOutline", isArgb = false), var manualCountChangeColor: ScanbotColor = ScanbotColor("?sbColorPrimary", isArgb = false), var title: StyledText = StyledText( text = "%d items", color = ScanbotColor("?sbColorOnSurface", isArgb = false) ), var clearAllButton: ButtonConfiguration = ButtonConfiguration( visible = true, text = "Clear all", background = BackgroundStyle( strokeColor = ScanbotColor("#00000000", isArgb = false), fillColor = ScanbotColor("#00000000", isArgb = false), strokeWidth = 1.0 ), foreground = ForegroundStyle( iconVisible = false, color = ScanbotColor("?sbColorOnSurface", isArgb = false), useShadow = false ) ), var barcodeItemTitle: StyledText = StyledText( visible = true, text = "BARCODE_TITLE", color = ScanbotColor("?sbColorOnSurface", isArgb = false), useShadow = false ), var barcodeItemSubtitle: StyledText = StyledText( text = "BARCODE_SUBTITLE", color = ScanbotColor("?sbColorOnSurfaceVariant", isArgb = false) ), var barcodeItemImageVisible: Boolean = true, var submitButton: ButtonConfiguration = ButtonConfiguration( visible = true, text = "Submit", background = BackgroundStyle( strokeColor = ScanbotColor("#00000000", isArgb = false), fillColor = ScanbotColor("#00000000", isArgb = false), strokeWidth = 1.0 ), foreground = ForegroundStyle( iconVisible = false, color = ScanbotColor("?sbColorOnSurface", isArgb = false), useShadow = false ) ), var startScanningButton: ButtonConfiguration = ButtonConfiguration( visible = true, text = "Start scanning", background = BackgroundStyle( strokeColor = ScanbotColor("?sbColorPrimary", isArgb = false), fillColor = ScanbotColor("?sbColorPrimary", isArgb = false), strokeWidth = 1.0 ), foreground = ForegroundStyle( iconVisible = true, color = ScanbotColor("?sbColorOnPrimary", isArgb = false), useShadow = false ) ), var placeholderTitle: StyledText = StyledText( text = "No barcodes here!", color = ScanbotColor("?sbColorOnSurface", isArgb = false) ), var placeholderSubtitle: StyledText = StyledText( text = "The barcode list is currently empty. Close this sheet and scan your items to add them.", color = ScanbotColor("?sbColorOnSurfaceVariant", isArgb = false) ), var placeholderIconBackground: ScanbotColor = ScanbotColor("?sbColorOutline", isArgb = false), var placeholderIcon: IconStyle = IconStyle( visible = true, color = ScanbotColor("?sbColorOnSurface", isArgb = false) ), var swipeToDelete: SwipeToDelete = SwipeToDelete( enabled = true, backgroundColor = ScanbotColor("?sbColorNegative", isArgb = false), iconColor = ScanbotColor("?sbColorOnPrimary", isArgb = false) )) Configuration of the list containing the barcodes that have already been scanned.