skip to Main Content

React native – Tailwind css is only applied to App.js but not inside other folders

I need help figure out where is the error. This is my github repo link: https://github.com/khouloudhaddad/food-delivery TailwindCss not working iside folders This is my github repo link: https://github.com/khouloudhaddad/food-delivery Package.json: { "name": "client", "version": "1.0.0", "main": "node_modules/expo/AppEntry.js", "scripts": { "start": "expo…

VIEW QUESTION

React Native stylesheet Not working as expected

here is the code snippet import { SafeAreaView, StyleSheet, Text, View } from 'react-native' import React from 'react' export default function Flatcards() { return ( <SafeAreaView> <View> <Text style={styles.headingText}>Flatcards</Text> <View style= {styles.container}> <View style = {[styles.card, styles.redCard]}> <Text>RED</Text> </View> </View>…

VIEW QUESTION

React native – Android requesting location instead of bluetooth permissions

I am debugging a react native app that absolutely needs bluetooth permissions, however at the moment in android the bluetooth permissions are returning unavailable. I am requesting permissions in my AndroidManifest.xml like this: <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" /> <uses-permission…

VIEW QUESTION
Back To Top
Search