Created
July 4, 2017 14:17
-
-
Save Jahans3/0acd531bcd44d47ffb66f9dc783e14a3 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
| export default class BarcodeCaptureView extends Component { | |
| constructor () { | |
| super() | |
| this.state = { | |
| captured: false | |
| } | |
| this._onBarCodeRead = this._onBarCodeRead.bind(this) | |
| this._onCancel = this._onCancel.bind(this) | |
| this.renderScanArea = this.renderScanArea.bind(this) | |
| StatusBar.setBarStyle('light-content') | |
| } | |
| // ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment