You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After we upgraded to NativeScript 3.1.0 we ran into an issue where the inline color property is ignored as soon as i set a default Page color in my app.css.
If you run the app you'll see that the complete sentence is red.
If you put the content from first-page.component.html to the app.component.htm, remove the page-router-outlet and set the default color with a css class on the GridLayout it works fine.
So it looks like the combination with the page-router-outlet and the inheritance of the color property from css files is going wrong.
This is found in tns-core-modules 3.1.0 it works fine in 3.0.0.
The issue is occurring on both iOS and Android.
The text was updated successfully, but these errors were encountered:
Hey, @corne-de-bruin thank you for the provided sample project!
After some additional tests it appears that the issue is only reproducible on iOS (tested on Android API-19, APi-23, and API-25 and it works as expected on my side)
<GridLayout rows="*">
<Label textWrap="true">
<FormattedString>
<Span text="This is an example to test "></Span>
<Span color="#349aff" text="the color of a span"></Span>
<Span text=" in a formattedstring."></Span>
</FormattedString>
</Label>
</GridLayout>
and in app.css
Page {
color: #ff1744;
}
The above is observed also when trying to set the color via CSS style. (again only on iOS)
Thanks for your reply, today i've tested again with the sample project and i can confirm that it's not reproducible on Android sorry for the inconvenience.
After we upgraded to NativeScript 3.1.0 we ran into an issue where the inline color property is ignored as soon as i set a default Page color in my app.css.
I've provided a sample application:
https://github.com/corne-de-bruin/FormattedStringExample
If you run the app you'll see that the complete sentence is red.
If you put the content from first-page.component.html to the app.component.htm, remove the page-router-outlet and set the default color with a css class on the GridLayout it works fine.
So it looks like the combination with the page-router-outlet and the inheritance of the color property from css files is going wrong.
This is found in tns-core-modules 3.1.0 it works fine in 3.0.0.
The issue is occurring on both iOS and Android.
The text was updated successfully, but these errors were encountered: