├── .gitignore ├── .prettierrc ├── LICENSE ├── LiveChat ├── components │ ├── Chat.js │ ├── ChatBubble.js │ └── NavigationBar.js ├── index.js └── lc3Parsers.js ├── README.md ├── assets ├── chat.png └── ios_back.png ├── index.js ├── livechatdemo.gif ├── package.json └── react-native-app-details.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LICENSE -------------------------------------------------------------------------------- /LiveChat/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LiveChat/components/Chat.js -------------------------------------------------------------------------------- /LiveChat/components/ChatBubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LiveChat/components/ChatBubble.js -------------------------------------------------------------------------------- /LiveChat/components/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LiveChat/components/NavigationBar.js -------------------------------------------------------------------------------- /LiveChat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LiveChat/index.js -------------------------------------------------------------------------------- /LiveChat/lc3Parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/LiveChat/lc3Parsers.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/README.md -------------------------------------------------------------------------------- /assets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/assets/chat.png -------------------------------------------------------------------------------- /assets/ios_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/assets/ios_back.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/index.js -------------------------------------------------------------------------------- /livechatdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/livechatdemo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/package.json -------------------------------------------------------------------------------- /react-native-app-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livechat/react-native-livechat/HEAD/react-native-app-details.png --------------------------------------------------------------------------------