ReactNative: how to center text?

前端 未结 16 727
终归单人心
终归单人心 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:14

    first add in parent view flex:1, justifyContent: 'center', alignItems: 'center'

    then in text add textAlign:'center'

提交回复
热议问题