As @Erel said here UI9 TintColor was fixed, but after the fix the Buttons are colored the same as the SafariBackground:
This also happens to all other colors, not just blue.
Is there a way to set the Text color or just setting the text color without setting the bg color?
B4X:
Private Sub InitSafariView
Page1.Initialize("Page1")
Page1.Title = "Page 1"
Page1.RootPanel.Color = Colors.White
Main.NavControl.ShowPage(Page1)
Dim bb As BarButton
bb.InitializeText("Open", "Open")
Page1.TopRightButtons = Array(bb)
End Sub
Private Sub Button1_Click
Safari.Initialize("safari", "https://www.b4x.com")
Safari.TintColor = Colors.Blue
Safari.Show(Page1)
End Sub
Is there a way to set the Text color or just setting the text color without setting the bg color?