sbb_data_scanner 4.4.1 copy "sbb_data_scanner: ^4.4.1" to clipboard
sbb_data_scanner: ^4.4.1 copied to clipboard

Recognition of optical encoded information for SBB use cases.

example/example.md

In-Line Data Scanner #

SizedBox(
  height: 250,
  width: 400,
  child: DataScanner( /* ... */ ),
)

Full Page Data Scanner #

If you want a full-page scanner, you can use the DataScannerPage widget instead.

Navigator.of(context).push(
  MaterialPageRoute(
    builder: (context) => DataScannerPage( /* ... */ ),
  ),
);