All Questions
595 questions
1
vote
1
answer
1k
views
(NOBRIDGE) ERROR TypeError: Cannot read property 'install' of null [Component Stack]
I am trying to build a react native app with expo and got stuck here
Iam stuck with this line
"import { InferenceSession, Tensor } from 'onnxruntime-react-native';"
When i removed this line ...
0
votes
0
answers
43
views
Native Linking Fails for Third-Party Dependencies in Custom React Native Package
I'm experimenting on a custom React Native package that includes both native (Kotlin for Android and Swift for iOS) and JavaScript code. This package encapsulates several APIs and functionalities and ...
0
votes
1
answer
415
views
Expo WebView not displaying on iOS but works on Android
I'm working on an Expo project that uses a WebView component to display web content. While everything works fine on Android devices, the screen appears blank on iOS. Below is the relevant code and ...
0
votes
0
answers
27
views
how to detect if cursor text selection is visible on mobile browser?
I'm trying to add update the jQuery Terminal cursor position when text selection cursor is visible. This is my code:
function update_mobile_cursor() {
if (is_mobile) {
var selection = ...
0
votes
1
answer
52
views
Invalid character in header content while opening React Native project
I created two project before this error. I faced this with my second project and decided creating a new project but it doesn't work. I tried to change statusPageMiddleware.js in project's file and ...
0
votes
0
answers
39
views
Styles not applying in Material Top Tab Navigator until code changes are made
I'm experiencing an unusual styling issue with React Native's Material Top Tab Navigator. The styles for my tab contents don't apply when the app first loads, but they start working when I make any ...
0
votes
0
answers
52
views
React native not starting
I have done everything to start my react native project.
When I run npx react-native start, I get this error
Could not move temporary workspace (C:\react_native_apps\testApp\recipieApp\recipieMain\...
0
votes
1
answer
79
views
I can't use @react-navigation/drawer example code
I followed this minimal example of drawer-based navigation.
https://reactnavigation.org/docs/drawer-based-navigation/
import * as React from 'react';
import { Button, View } from 'react-native';
...
0
votes
1
answer
104
views
How to target only webview rendering with CSS? [duplicate]
The website in question renders correctly on various Firefox browsers, Mac, and IOS browsers, Edge, Chrome, and Chromium, on both desktop and mobile.
However, when it is viewed from webview, either ...
0
votes
0
answers
25
views
DepthLab objects to place
How can I generate objects to place in DepthLab for Android like the Robochef by default? Are there any examples I can get somewhere else?
I try to use DepthLab for a demo.
0
votes
1
answer
64
views
To disable all languages other than english from keyboard
I want to avoid other languages, I want an English keyboard to use as an input.
<TextInput
style={{ width: "85%", marginStart: 10, fontSize: 12, fontFamily: 'Roboto' }}
...
0
votes
0
answers
37
views
Javascript problem with Hyperlink to Mobile
I created a button that I want to send the user to the MercadoLibre Reviews section, however, when I execute it it asks for authorization, but it does not send the user to the correct section.
On the ...
0
votes
0
answers
33
views
Ajax doesn't work on mobile unless using www. prefix
I have a web page that uses Ajax and it works great on the desktop using domain.com or www.domain.com.
It also works great on mobile, as long as I use the www.domain.com URL.
When accessing the naked ...
0
votes
1
answer
246
views
how to deal with error in unity (Job failed with exception: GooglePlayServices)
how to fix this error, my unity version is 2023.2.3f1
Job failed with exception: GooglePlayServices.JavaUtilities+ToolNotFoundException: jar not found.
at GooglePlayServices.PlayServicesResolver....
1
vote
0
answers
121
views
VirtualKeyboard.geometrychange event is not fired in some Android Chromium browsers (Opera, Samsung)
I try to implement a JS script that detects when the users opens a virtual keyboard on their Android device. Now it looks like this:
function detectVirtualKeyboardOpeningViaAPI(e) {
try {
...