ReactNative: how to center text?

前端 未结 16 731
终归单人心
终归单人心 2020-12-22 18:40

How to center Text in ReactNative both in horizontal and vertical?

I have an example application in rnplay.org where justifyContent=\"center\" and

16条回答
  •  生来不讨喜
    2020-12-22 19:04

    const styles = StyleSheet.create({
            navigationView: {
            height: 44,
            width: '100%',
            backgroundColor:'darkgray',
            justifyContent: 'center', 
            alignItems: 'center' 
        },
        titleText: {
            fontSize: 20,
            fontWeight: 'bold',
            color: 'white',
            textAlign: 'center',
        },
    })
    
    
    render() {
        return (
            
                 Title name here 
            
        )
    
    }
    

提交回复
热议问题