Indicates whether the target platform is mobile. Returns: `True` when targeting iOS or Android, otherwise `False`.
()
| 78 | |
| 79 | |
| 80 | def is_mobile(): |
| 81 | """ |
| 82 | Indicates whether the target platform is mobile. |
| 83 | |
| 84 | Returns: |
| 85 | `True` when targeting iOS or Android, otherwise `False`. |
| 86 | """ |
| 87 | return is_ios() or is_android() |
| 88 | |
| 89 | |
| 90 | if not is_mobile(): |
no test coverage detected