Last active
July 4, 2020 00:28
-
-
Save Younes-Charfaoui/827a1fb9156f5b3101e4fa596808e605 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private fun takeImage() { | |
| fotoapparat.takePicture() | |
| .toBitmap() | |
| .whenAvailable { picture -> | |
| scanImageForBarcode(picture!!) | |
| } | |
| } | |
| private fun scanImageForBarcode(picture: Bitmap){ | |
| // handle and scan the picture for barcode | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment