Join the Stack Overflow Community
Stack Overflow is a community of 6.5 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

From what I understand, React Native essentially allows you extend the functionality of React components to include native UI elements for mobile platforms. Angular 1.5 introduced components as more or less simple, best-practice directives.

I have a web application already written in AngularJS, and it would be amazing to be able to produce native mobile applications using React Native without having to re-write the front-end of the application completely in React.

Is it possible to use React Native to add native UI elements to Angular components instead of React components? I apologize if this is a silly question.

share|improve this question
1  
No. You won't be able to just wrap Angular components in React Native and have a functioning app. Angular relies heavily on directives and templates and React doesn't offer you that. Build a React app the right way and use React. It might take a little bit more effort on your part but it is the correct way to do it. You will be able to reuse a lot of your core JS code though. – erichardson30 Apr 12 '16 at 17:31

As of May 2016, you can now use angular and react native together. Check out Angular2 + React native

share|improve this answer
    
not with ng2, need angular + react native. – Yogesh Patel Dec 20 '16 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.