Can I use react native as a backend in Android
I want to use all the UI components from Android only but for the logic part I want to call react native and do the backend there
Is it possible ?
Let me summarize your question to see if I got it right: You would like to use Native UI Components in Android and compose/utilize them using React Native.
If so the answer is yes. React Native does nothing else under the hood, they try to map as directly as possible to the native UI concepts. If this is still too much JS UI layer for you, you can directly implement the Native UI Components you need and bridge them into React Native, as to be seen here.
As React native is doing for us to convert and other component in native android component. If you don't want to use this react native component code then you have to create native android module in react native to use native component. But it's not advisable.
Related
Background
Native export some components and want to use in react native with some props. How to receive react native props in swift ui?
Try
Seems RCT_EXPORT_VIEW_PROPERTY not working
Don't know how to use other macro. There are no detailed tutorial.
Read the article react native meets swift ui, but it's example has some problems, Article here, actually don't know how to deal with other type.
I am new to ReactNative and confused that there is no Android BottomNavigation included
(image source: https://material.io/components/bottom-navigation/)
What's the reason for this and what's the best practive way to get one? (with and without expo)
To do this, you need to use one of the existing React Native navigation libraries
Try using it reactNvigation
https://reactnavigation.org/docs/en/material-bottom-tab-navigator.html
or use NativeBase
I am using react-native-mapbox-gl/maps extensively in my react native app and I wanted to add dynamic style icons to the chart style.
The javascript mapbox library has a nice event called styleimagemissing with which we can check which image for a style is missing and construct it.
Is there something similar in the react-native mapbox gl library?
In other words, I would line to achieve something like this using the react native mapbox-gl library.
This is implemented in react native mapbox gl 8.0 and later. See Images#onImageMissing
Native base components showing blank page in react native android but when i am using react native components like View or Text then its work. Please help me. I think there are versioning issue.
How can I use konvajs library with react native. If not, is there any other library which allows defining canvas object declaratively for react native?
React native doesn't use an html5 view, it render native code so you wouldn't be able to use konvasjs, take a look at react-native-canvas, and see if it fits what you need.