How to Add roiCenterMark option
roiCenterMark option #
A new setting was added to display a marker in the center of the Region of Interest (ROI).
You can configure it using:
guard let config = barkoderView.config else { return }
// Point
config.roiCenterMark = .point
// Crosshair
config.roiCenterMark = .crosshair
// None
config.roiCenterMark = .none