├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── assets ├── Screenshots │ └── example.png └── logo.png ├── example ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package-lock.json ├── package.json ├── src │ └── TextWrapper.tsx └── tsconfig.json ├── lib ├── RNText.style.ts └── RNText.tsx ├── package.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/README.md -------------------------------------------------------------------------------- /assets/Screenshots/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/assets/Screenshots/example.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/assets/logo.png -------------------------------------------------------------------------------- /example/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/.expo-shared/assets.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/src/TextWrapper.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /lib/RNText.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/lib/RNText.style.ts -------------------------------------------------------------------------------- /lib/RNText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/lib/RNText.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-custom-text/HEAD/tsconfig.json --------------------------------------------------------------------------------