I have isRegistered that I fetch via ajax call so isRegistered takes an amount of time to be set.
<View style={{ width: '48%' }}><Text style={style.labelStyle}> {isRegistered ? 'Attempt' : 'Amount'}</Text></View>
As a result I see 'Amount' first (a few hundred of milliseconds so noticeable by human) before I can see 'Attempt'
How can I avoid this?
I am developping on IOS emulator (not device) but wonder it will also happen on real device