Detect Device
Component type
Categories
Maintenance status
Development status
Component created
Component changed
Drupal 8 module for detect devices and add cache context per device.
This is a lightweight mobile detection based on the [Mobile_Detect.php](http://mobiledetect.net/) library.
PHP examples
------------
### Check type device
``` php
$deviceDetector = Drupal::service('detect.device');
$deviceDetector->isMobile();
$deviceDetector->isTablet()
```
