├── .gitignore ├── .npmignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── index.tsx ├── package.json ├── screenshot └── result.png ├── src ├── index.d.ts └── index.js ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | index.tsx 2 | node_modules 3 | .git 4 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/README.md -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/screenshot/result.png -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/src/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bang9/react-native-wrapped-text/HEAD/yarn.lock --------------------------------------------------------------------------------