As @Erel said here UI9 TintColor was fixed, but after the fix the Buttons are colored the same as the SafariBackground:
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
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?
Thanks,
but using V1.12 it still happens that the Background is Colored the same as the Text Color
Is there a way to set BG and Text color independently?
Thanks