Relative Content

Tag Archive for androidiosreact-native

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: […]

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?