Search code examples
javascripttwitterreact-native

React native - embed Twitter


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>

Solution

  • 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.