This folder contains a React Native example app that demonstrates the markdown chat flow for this repo:
- message list rendered with
Markdown - composer fixed to the bottom
- expandable markdown input using
MarkdownComposer - send button that appends the drafted markdown to the chat
From example/package.json:
npm install
npm startIn another terminal:
npm run androidOr on iOS:
bundle install
cd ios
bundle exec pod install
cd ..
npm run iosThe example imports the local source from ../src, and metro.config.js watches the repo root so changes to the library are reflected in the app during development.