Density Pixels to Unit Points equivalence

Hi!

I want to build an application that follows some of the Android material design guidelines. For example App Bar height.

In the guide it says that App Bar height must be 56dp.

There’s a way to convert 56dp to Unit Points?

Thanks!

Hi!

Fuse automatically works in device-independent pixels, unless otherwise specified.

 <Panel ux:Class="Material.AppBar" Height="56">

This will automatically conform to the material design guidelines.

Good to know for sure.

Thanks Anders.