修改.gitignore 并应用于已存在的项目
摘要:1、git rm -r --cached . 2、git add . 3、git commit -m "重新设置.gitignore" 参考链接https://stackoverflow.com/questions/19663093/apply-gitignore-on-an-existing-re
阅读全文
posted @
2017-07-26 14:54
码农时刻
阅读(333)
推荐(0)
.app/Info.plist Print: Entry, ":CFBundleIdentifier", Does Not Exist
摘要:相信如果你看到在搜这个问题你会发现很痛苦: 也许你看到了stackoverflow(https://github.com/facebook/react-native/issues/7308) 上的这个issue但是里面的解答还是对你没什么帮助: 我也困惑了好久,然后我尝试着去看完整的log,在完整的
阅读全文
posted @
2017-07-09 11:53
码农时刻
阅读(4515)
推荐(0)
React native 获取环境变量
摘要:记录:如何获取环境变量 https://github.com/joeferraro/react-native-env
阅读全文
posted @
2017-07-08 14:04
码农时刻
阅读(767)
推荐(0)
React Native TextInput 提交时/return时 如何隐藏输入光标
摘要:... render(){ <View> <TextInput value='text input' onSubmitEditing={Keyboard.dismiss} /> </View> } ... 如上:只要在onsubmitEditing中调用Keyboard.dismiss就好了
阅读全文
posted @
2017-07-07 16:57
码农时刻
阅读(593)
推荐(0)