1

I created a react native app. Want i want to implement is a page that shows a user's twitter feed. If you look online, twitter offers this feature. However, the twitter example uses tag, and that is not supported in react-native. Does anyone know how to embed twitter feed in react native ?

<a class="twitter-timeline"
  href="https://twitter.com/twitterdev">
Tweets by @TwitterDev
</a>
AJ_
  • 3,387
  • 10
  • 42
  • 76

1 Answers1

3

Currently there is no React Native implementation for twitter feed.

You have 3 options:

  1. Implement it yourself using twitter API;
  2. Use WebView as described in this question;
  3. You can also wrap native Twitter Kit for iOS and Twitter Kit for Android as described in Native UI Components documentation.
Fancy John
  • 36,627
  • 3
  • 24
  • 25