Re-Angelo Jarvis

Results 12 comments of Re-Angelo Jarvis

> Would greatly appreciate an answer to my question, and I will understand if it's considered a "dumb noob" question. 😄 A friend of mine got through with this. I...

> Seems to be fixed (at least for me). Okay, that is strange yeah, mine still gives the error. All the others work except for that one

@IElgohary What do you mean? I added the npm install and imported proptypes but i still get an error.

import React from 'react'; import { View, Text, Button, StyleSheet } from 'react-native'; import Slideshow from 'react-native-slideshow'; import PropTypes from 'prop-types'; class SlideshowGallery extends React.Component { constructor(props) { super(props); this.state...

Ah facing the same issue, thought initially it was a bug in the shadcn/ui package.

> > > @shirinapr I had the same issue, solution was to downgrade to `3.5.0-alpha.0` > > > > > > Thanks for your response, ultimately I decided to go...

Workaround to get the data for me was by doing: ``` const res = api.call().then(function(response) { return response.json(); }).then(function(data) { console.log(data); }); ``` And as stated above you can use...

I found a quick workaround. What I have done is, in the columns I added a custom column with the customBodyRender method. Here I pass the tableMeta prop. I then...