I need draw information text on State == State.DataLoaded and hide it on State == State.Realtime.
I have tried this with no result on screen
else if (State == State.DataLoaded)
{
Draw.TextFixed(this, "progress", "Processing. Please wait...", TextPosition.Center);
}

Comment