-
-
Notifications
You must be signed in to change notification settings - Fork 228
`hasPermission` and `hasDevices` cheat sheet
Jonathon Roscoe edited this page Sep 9, 2019
·
6 revisions
let scanner = new ZXingScannerComponent();
scanner.hasPermission
check
scanner.hasDevices
over check
Below we have something I call
qubool
(quantumbool
eans), because they're booleans with multiple values, more than 0 and 1, like aqubit
.
State | 😎 | Description |
---|---|---|
true |
✔ | Permission Granted. |
false |
❌ | Permission Denied. |
undefined |
❔ | Not checked yet. |
null |
⭕ | Check has failed and the state couldn't be updated. |
State | 😎 | Description |
---|---|---|
true |
✔ | Usable devices found. |
false |
❌ | No available devices. |
undefined |
❔ | Not checked yet. |
null |
⭕ | Check has failed and the state couldn't be updated. |