# How to use Device Info column

**URL:** https://community.glideapps.com/t/how-to-use-device-info-column/61935
**Category:** Ask for Help
**Created:** [May 20, 2023, 4:22am UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935 "2023-05-20T04:22:02Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Pratik\_Shah](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/pratik_shah/32/12416_2.png) [@Pratik\_Shah](https://community.glideapps.com/u/Pratik_Shah)
#### Post date: [May 20, 2023, 4:22am UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/1 "2023-05-20T04:22:02Z")

</div>

Hi,

I want to hide a button if user is using small screen (Mobile or Table). How to achieve this? In device info column, there are some info which I guess can use but not sure whats best way to do it.

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/c/9cb4a786c68e7ec6186a589e923870f9c4282b17.png)

I did this, but then I thought, what if user is using big screens of Apple (that’s iOS and not Windows, right)?

Please guide.

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 20, 2023, 4:44am UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/2 "2023-05-20T04:44:54Z")

</div>

get the screen size from navigator

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [May 20, 2023, 1:51pm UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/3 "2023-05-20T13:51:18Z")

</div>

As Uzo suggested, I think this might be what you need.

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/a/0a2df859d4ed67a43eaaf3c69998f70667ef0b84.png)

---

<div class="post-metadata">

### Author: ![Pratik\_Shah](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/pratik_shah/32/12416_2.png) [@Pratik\_Shah](https://community.glideapps.com/u/Pratik_Shah)
#### Post date: [May 20, 2023, 1:58pm UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/4 "2023-05-20T13:58:10Z")

</div>

Thanks @Uzo and @ThinhDinh .

What should be the size I should mention below which the form shouldn’t be visible?

---

<div class="post-metadata">

### Author: ![Joe\_Gabriele](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/joe_gabriele/32/57595_2.png) [@Joe\_Gabriele](https://community.glideapps.com/u/Joe_Gabriele)
#### Post date: [May 20, 2023, 4:27pm UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/5 "2023-05-20T16:27:12Z")

</div>

This is what I found online by searching CSS Media sizes:

**Common Width Breakpoints: Is there a Standard Resolution?**

- 320px — 480px: Mobile devices.
- 481px — 768px: iPads, Tablets.
- 769px — 1024px: Small screens, laptops.
- 1025px — 1200px: Desktops, large screens.
- 1201px and more — Extra large screens, TV.

I normally use If WindowWidth \<=720px, then Mobile, Else Desktop

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [May 20, 2023, 9:21pm UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/6 "2023-05-20T21:21:01Z")

</div>

I use below 400px… this is when Pages are shifting UI

---

<div class="post-metadata">

### Author: ![Pratik\_Shah](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/pratik_shah/32/12416_2.png) [@Pratik\_Shah](https://community.glideapps.com/u/Pratik_Shah)
#### Post date: [May 21, 2023, 2:39am UTC](https://community.glideapps.com/t/how-to-use-device-info-column/61935/7 "2023-05-21T02:39:11Z")

</div>

Thanks. This is exactly what I wanted.
