skip to Main Content

Why does my list of Realm objects loaded into FlatList using realm-react only render if I use the spread operator? – React native

import React from "react" import { initialWindowMetrics, SafeAreaProvider } from "react-native-safe-area-context" import {FlatList, SafeAreaView, Text, View, } from "react-native"; import {colors} from "./theme"; import {LocationRealm} from "./realm/models/LocationRealm"; import RealmContext from './realm/AppRealm'; const { RealmProvider, useQuery } = RealmContext; function App()…

VIEW QUESTION

Mongodb – Mongo DB Realm + Kotlin Coroutines – Cannot find a version of 'org.jetbrains.kotlinx:kotlinx-coroutines-core' that satisfies the version constraints

I'm trying to use Mongo DB Realm in my Android app. I've added those two dependencies: implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt" implementation "io.realm.kotlin:library-sync:1.0.2" Along with the plugin: id 'io.realm.kotlin' and id 'io.realm.kotlin' version '1.0.2' apply false But I'm getting this strange error, and…

VIEW QUESTION
Back To Top
Search