iOS Question ActionSheet

GiulioVale

Active Member
Licensed User
Longtime User
Any possbility to customize ActionSheet?
Example the font size of item change line by line or background?

Thanks
 

tufanv

Expert
Licensed User
Longtime User
So we can't create any message box with custom font?
You can use a regular panel and customize it in any way you like.
for example instead of msgbox(....) you will use
B4X:
panelmsgbox.visible=true
Page1.RootPanel.UserInteractionEnabled=False

this will do the same thing with what msgbox does. It will disable the other controls and show the user the msgbox panel you designed. You can design the panel as you like. Afther user click on the "ok " button you will use panelmsgbox.visible=false and Page1.RootPanel.UserInteractionEnabled=true . so your panel will be acting like a msgbox.
 
Upvote 0
Top