Bar Galili
Bar Galili
The key is passed to the renderRow function, so just pass it along to the Row component _renderRow = ({ data, active, key }) => { return <Row data={data} active={active}...
You can write your own function to do that ``` import {Image} from "react-native"; export async function getImageDimensions(imageUri) { return new Promise((resolve, reject) => { Image.getSize(imageUri, (width, height) => {...
@Ibeihl The `toggleRowActive` prop is passed to the outermost component inside the `renderRow` function. Good: ``` renderRow = (props) => { return } ``` `toggleRowActive` should be accessible in the...
I recently upgraded to 0.62, tho i use the sortable list in an old feature and hadn't tested it since upgrading. I will update here on the status once i...
@Ibeihl move the entire return statement to a new component: ``` const renderSortablePlaceCards = ({ data: block, active }) => { return }; ``` And the component: ``` const SortablePlaceCard...
Aight, great to hear that :)