Importing Text from local json file in React native

后端 未结 3 1501
不思量自难忘°
不思量自难忘° 2021-01-05 10:39

I am wondering how the common way is to import a huge text to a View. In my case i am developing a React Native App for Android and iOS, and on one of my Views i want to pre

3条回答
  •  不知归路
    2021-01-05 10:58

    You can use:

    import file from './config/TermsAndCondition.json';
    

    then you can treat it as a javascript object:

    file.description
    

提交回复
热议问题