Wish [B4X] [XUI] CircularProgressBar - mLbl

LucaMs

Expert
Licensed User
Longtime User
However that change would not be enough.
It would be necessary (which I am doing) a Boolean variable (a property of the class) to manage the updating of the label inside the class or outside (the programmer code).

B4X:
    If Not(mUpdateLblByCode) Then
        mLbl.Text = $"$1.0{Value}"$
    End If
 
Top