skip to Main Content

3×3 grid like tic tac toe – React native

i'm trying to make a grid using react native that's responsive to multiple screen sizes but having troubles drawing the lines in (the sides of the box can't have a stroke). this is a small snippet: <View style={styles.boxContainer}> <View style={styles.box}>…

VIEW QUESTION

native Could not find image './expo-asset/assets/${your_img_path}' not found in React Native / Expo

As my project is expo ejected react native project and I'm getting the error [native] Could not find image on path 'file:///var/mobile/Containers/Data/Application/..../Library/Application%20Support/.expo-internal/assets/...' "react": "17.0.1", "react-native": "0.64.0", "expo": "~41.0.1", "expo-error-recovery": "^2.1.0", "expo-font": "~9.1.0", "expo-modules-core": "^0.2.0", "expo-splash-screen": "^0.10.3", "expo-status-bar": "~1.0.4", "expo-updates": "^0.5.5",…

VIEW QUESTION

Dockerfile – Error: Cannot find module 'react'

I have a React app that I'm trying to Dockerize. Here is my Dockerfile and docker-compose: FROM node:16.13.1 WORKDIR /app ENV PATH /app/node_modules/.bin:$PATH COPY package.json . COPY package-lock.json . RUN mkdir -p node_modules/node-sass/vendor/linux-x64-93 RUN curl -L https://github.com/sass/node-sass/releases/download/v7.0.1/linux-x64-93_binding.node -o node_modules/node-sass/vendor/linux-x64-93/binding.node RUN…

VIEW QUESTION
Back To Top
Search