Invariant Violation: ListView has been removed from React Native. See fb.me/nolistview for more information or use `deprecated` - react-native

I already remove all my ListView component, and also I have no Icon or Spinner component that's I import from react-native or native-base. But it's still getting back this error, can anybody help me plz. I stuck here. But I need a solution very badly.

Related

How to use #react-native-community/datetimepicker with textinput field with validation in react native

I refer this docs https://www.npmjs.com/package/#react-native-community/datetimepicker
I try to implement this in react native with textinput but I don't know how to achieve this, actually I am new in react native pls any one guide me.
I need to add DOB field in registration using datepicker and also user can type dob in textinput with validation pls help, thanks in advance.

I am following tutorial and doing the same steps, but my swiper its not working in react js

i did
npm i swiper and imported all swiper imports but the problem is its saying in console 'Objects are not valid as a React child (found: object with keys {clickable}). If you meant to render a collection of children, use an array instead.'
and showing an error to closing tag of swiper like this '>'showing that this is wrong but i am doing the same thing as the video doing :(, i did />, million times checked but still not working

Quora-like expandable component in React Native

I'm trying to build a React Native app and would like to implement a component just like in Quora where upon clicking the question, the component expands and shows the remaining details (text/images of the question).
I tried using react-native-panel from https://github.com/dwicao/react-native-panel#readme, but it can only handle text in the panel before expanding. I'd like to implement a panel that has an image in it even before I press on the panel to expand. Would love it if anyone could refer me to any npm packages that use components to achieve this. Thank you!
Use this tutorial https://blog.theodo.com/2020/06/build-accordion-list-react-native/. Stick the desired image somewhere there in the code.

React Native - Is it ok if I hide warning in react native?

I am new to react native and I am having a warning that I just don't know how to get rid of it, is it ok if I just hide it as long as it does not become an error to crush my app?
The warning I receive:
Warning: Cannot update during an existing state transition (such as
within render or another component's constructor). Render methods
should be a pure function of props and state; constructor side-effects
are an anti-pattern, but can be moved to componentWillMount.
I tried to manage to not happen this warning but if I register a user and than go back to signupscreen and if I try to register another one the warning comes up.
It's best to resolve that warning, you need to look where your updates to the state are happening.
If you do updates to the state or props inside of your render function you are creating infinite render loops.
To help with this problem I need to have your code from render() function. You can Upload it here. Then I can review your code. It will help to solve this problem.

navigating to component twice giving error for setstate

I have a small application in react-native with two components.
on Navigating to a component twice this gives me error for setState function.
Anybody have idea about this .
I am using native base as an starter kit for my project.
the only change I did is I have seperated the UI render part in different js file.
Thanks in advance.
this has something to do with your render function.
the setstate function gives error when there is no such state variable available.
may be on navigating again to that same screen it is giving you a new state for that page instead of the previous state.
Please check your render function.