Emerson Vieira
Emerson Vieira
try this ```javascript import { useState } from "react"; import { ScrollView, StyleSheet, Dimensions } from "react-native"; import {SafeAreaView, SafeAreaProvider} from 'react-native-safe-area-context'; import WebView from "react-native-webview"; const App = ()...
> I'll write here since my issue is very similar. I'm using RN 0.77 and WebView 13.13.4, and if I simply copy and paste your example, the onMessage event never...
Week not displayed by default. Follow example ```js import React from 'react'; import { View, StyleSheet } from 'react-native'; import { Calendar } from 'react-native-calendars'; const BasicCalendar = () =>...
Hey, @Rohit3523 ! Can you create and make available a repository with the reproduction of this problem?
Hey! See fork: https://github.com/mensonones/react-native-background-geolocation
This happens because errors thrown in asynchronous functions (async) inside React Native callbacks are not caught by the same global error mechanism as synchronous errors. The error thrown in the...
provide an example to reproduce the problem, preferably a repository.
It probably needs to use GNSS(https://developer.android.com/reference/android/location/LocationManager#GPS_PROVIDER) to work in airplane mode, otherwise it normally uses a combination of GPS, Wi-Fi and cell tower signals to calculate the location.
Try this, @Mynameisjohndev https://github.com/mensonones/rn-gps
Could you provide a repository with a minimal reproduction of the problem?