W WhiteWizard Member Licensed User Apr 18, 2020 #1 Can anyone give me an example of how to set the background color of a B4XFloatTextField to transparent in IOS? Thanks in advance.
Can anyone give me an example of how to set the background color of a B4XFloatTextField to transparent in IOS? Thanks in advance.
Erel B4X founder Staff member Licensed User Longtime User Apr 18, 2020 #2 Moved to the questions forum. Upvote 0
Semen Matusovskiy Well-Known Member Licensed User Apr 18, 2020 #3 There are different ways. For example B4X: Dim p As Panel = B4XFloatTextField1.mBase For Each v As View In p If v Is TextField Then v.Color = Colors.Red Next Upvote 0
There are different ways. For example B4X: Dim p As Panel = B4XFloatTextField1.mBase For Each v As View In p If v Is TextField Then v.Color = Colors.Red Next
W WhiteWizard Member Licensed User Apr 18, 2020 #4 Thank you very much SEMEN, I had tried everything. Upvote 0