Reputation: 69
I am looking to decide what to you to style my meteor application with which I plan to launch solely as an android and iOS app. It will not be made into a website. My understanding is react native is the same as reactjs but geared towards mobile apps. Is this this true? If so do you recommend using react native instead of reactjs for making apps or does reactjs still offer greater benefits? Also, is material ui or anything like that needed when using react native?
Upvotes: 3
Views: 216
Reputation: 4441
React-native shares a mental model with React and some key code, but is significantly different. Here's a few points/differences to consider:
Lastly, for material UI, if you're talking about the google material UI, is a stylistic UI lib, not a cross-platform interface library. It's more akin to bootstrap than React. There are plenty of libraries that implement google's material UI, and those might be created specifically for React, React-native or another library/platform.
Hope that helps a bit!
Upvotes: 2