Display/Refreshing problem?

Hi guys, I’m pretty new to expo. As I’m developing this mobile app, expo gave me this, I tried clearing cache, but still got no luck. Does anyone know what’s wrong with it?


And here is an example of my styles, just normal ordinary styles:

const styles = StyleSheet.create({
    container: {
        flex: 1,
        padding: 30,
        // marginTop: 65,
        flexDirection: 'column',
        justifyContent: 'center',
        backgroundColor: '#f9f7f1',
        },
    Register1:{
        width: 150, 
        height: 150,
        position: 'absolute',
        bottom:height/1.8,
        left:width/8,
        borderColor: '#874339',
        borderWidth: 1,
        borderRadius: 10,
    },
    Register1Image:{
        width: 50, 
        height: 50,
        position: 'absolute',
        bottom:50,
        left:50,
        },
    Register1Text:{
        position: 'absolute',
        bottom:height/2,
        left:width/6,
        fontSize: 18,
        color:'#874339',
        },
}

Hey @emmmm,

I’m not exactly sure what’s going on here. Can you elaborate on what the intended behavior is and what is actually happening?

Cheers,

Adam

So when I “expo start” on ios stimulator it gives me


and it is what I am expecting, but when I open expo client app on my iphone to run the same project it gave me all those glitches.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.