skip to Main Content

Could not get the simulator list from Xcode. Please open Xcode and try running project directly from there to resolve the remaining issues – React native

i updated os 12.3 to 13.1, xcode 13.1 to 14.1 and installed commandline tools, react native app running through xcode but not running with command line, getting below error 2022-12-13 16:36:47.584 xcodebuild[3616:20381] Writing error result bundle to /var/folders/zn/6l6295m57kb3vn_8pyn8xtbr0000gn/T/ResultBundle_2022-13-12_16-36-0047.xcresult xcodebuild: error:…

VIEW QUESTION

Create a backdrop in react native

I have a bottom bar to which i want to add this kind of background in react native currently it looks like this. How do i achieve this This is my current code <View style={{justifyContent: 'center', alignItems: 'center'}}> <Image style={tabStyle.iconSize}…

VIEW QUESTION

react native text input

I have a component export default function AppTextInput({icon, placeholder,onChangeText, ...otherProps}) { const onChanged =(text) =>{ let newText = ''; let numbers = '0123456789'; for (var i=0; i < text.length; i++) { if (numbers.indexOf(text[i]) > -1) { newText = newText +…

VIEW QUESTION
Back To Top
Search