iOS Question How I can change the color to title text of the top bar

Israel Gallegos

Member
Licensed User
Hi! I need to change the title text color of the top bar, where the time is displayed
Help me please

IMG_537FD13E4AC5-1.jpeg
 

roumei

Active Member
Licensed User
You can only choose between black and white for the text. See Semen's example here:

Add one of the two options to your #Region Project Attributes:
B4X:
   ' White text color
    #PlistExtra         : <key>UIUserInterfaceStyle</key><string>Dark</string>
    
    ' Black text color
    #PlistExtra         : <key>UIUserInterfaceStyle</key><string>Light</string>
 
Last edited:
Upvote 0

Israel Gallegos

Member
Licensed User
You can only choose between black and white for the text. See Semen's example here:

Add one of the two options to your #Region Project Attributes:
B4X:
   ' White text color
    #PlistExtra         : <key>UIUserInterfaceStyle</key><string>Dark</string>
   
    ' Black text color
    #PlistExtra         : <key>UIUserInterfaceStyle</key><string>Light</string>


Perfect, Works fine
Thank you!!
 
Upvote 0
Top