Is it possible to implement mirroring (screen cast) the whole app in android/ios react native?
I was looking to implement screencast my react native app to the connected devices. I have tried the following packages such as
Environment setup for React Native on MacPro Intel Chip (Late 2013)
Is it still possible to develop React Native applications on MacPro Late 2013 (aka trash Mac).
React native text going to next line unecessarily
import React from ‘react’; import { SafeAreaView, View, Text, StyleSheet } from ‘react-native’; import MaskedView from ‘@react-native-community/masked-view’; import { LinearGradient } from ‘expo-linear-gradient’; const GradientTextTag: React.FC = () => { return ( <View style={styles.container}> <MaskedView maskElement={ <View style={styles.maskContainer}> <Text style={styles.text}>New Pickup Time</Text> </View> }> <LinearGradient colors={[‘#3023ae’, ‘#c86dd7’]} start={{ x: 0, y: 0 }} end={{ x: […]
Build failed with an exception with react native CLI
first time starting with react native CLI, i don’t understand how to solve this..
When I click on the push notification on my android app, entire app get reloaded
I have a React Native app with RN version "react-native": "0.72.7"
, and use react-native-notification
with version ^5.1.0
for my push notification service for both Android and iOS applications.
How to display media controls in react-native-video on notification?
I followed instructions in the manual (https://thewidlarzgroup.github.io/react-native-video/component/props#shownotificationcontorols).
Is there any permissions in react native to override silent mode to play push notification sound for specific notification?
I am developing an emergency (SOS) app. When user activates an SOS, it sends push notification to some users. I wanted the app to play sound for SOS notification even when the phone is in silent mode. I couldn’t find any silent override permissions. Is there any other way i can do it?
How to start building queue management app
I want to develop a queue management app for mobile. it should be supported by iOS and Android too, the app should include admin side for the customer and client site for the customer’s client.
I’m familiar with JS and React. Should i develop the app in React-Native or something else.
Could not find com.google.vr:sdk-base:1.180.0
I am trying to render panaroma image on my react-native application. Tried few packages, but most of the devs suggesting this https://github.com/lightbasenl/react-native-panorama-view.
How to Implement Drag-and-Drop Functionality for Images in React Native?
I’m working on a React Native app where I need to implement drag-and-drop functionality for images. Specifically, I want users to be able to rearrange the order of images by dragging and dropping them within a container.
I’ve searched for tutorials and libraries, but I haven’t found a clear solution for implementing this in a React Native app. Can someone provide guidance on how to achieve drag-and-drop functionality for images in React Native?