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
Environment
Provide version numbers for the following components (information can be retrieved by running tns info in your project folder or by inspecting the package.json of the project):
CLI: 6.8.0
Cross-platform modules: 6.5.1
Android Runtime: 6.5.3
iOS Runtime: 6.5.2
Plugin(s): 2.3.0
Describe the bug
This is a run-time error. When a textview loses focus, the text color is reverts to black when running on an iOS device with dark mode enabled, despite the fact that when text is entered, it shows up white. When focus is returned to the TextView, additional text does show up in light colored text, but the text already entered is still black.
To Reproduce
Create an app from the angular template. Modify the home.component.html file with the following code:
<ActionBar>
<Label text="Home"></Label>
</ActionBar>
<GridLayout rows="auto, *">
<!-- Add your page content here -->
<TextField row="0"></TextField>
<TextView row="1"></TextView>
</GridLayout>
Switch the simulator or device to dark mode. Run the app.
Expected behavior
The text color should be light colored regardless of whether the field is being edited or not.
Sample project
Additional context
The text was updated successfully, but these errors were encountered:
Environment
Provide version numbers for the following components (information can be retrieved by running
tns info
in your project folder or by inspecting thepackage.json
of the project):Describe the bug
This is a run-time error. When a textview loses focus, the text color is reverts to black when running on an iOS device with dark mode enabled, despite the fact that when text is entered, it shows up white. When focus is returned to the TextView, additional text does show up in light colored text, but the text already entered is still black.
To Reproduce
Create an app from the angular template. Modify the home.component.html file with the following code:
Switch the simulator or device to dark mode. Run the app.
Expected behavior
The text color should be light colored regardless of whether the field is being edited or not.
Sample project
Additional context
The text was updated successfully, but these errors were encountered: