TextColor change from WhileTrue trigger doesn't work on 0.20

Hi! This works in the local preview as expected but not on the device:

<Each Items="{items}">
  <Text ux:Name="text" Value="{title}" TextColor="#000" />
  <WhileTrue Value="{highlight}">
    <Change text.TextColor="#fff" />
  </WhileTrue>
</Each>

highlight is a Observable which returns boolean. Toggling it’s value should change the text’s color.

Tried both on Android and iOS with uno build ... -c=Release --run

Just fixed, included in next pre-release and release

Thanks!