开发者问题收集
我开始将 React Native 与 Expo 结合使用,遇到了第一个问题。我想更改 Android 导航栏的颜色。不幸的是,我不知道该怎么做。我尝试使用https://github.com/thebylito/react-native-navigation-bar-color#readme,但它打印出以下错误:TypeError: TypeError: null is not an objec
每次我尝试单击复选框时,都会看到上述错误我想单独选中下面显示的四个复选框,但我无法做到。请帮忙!代码如下:import * as React from 'react';import {Text,View,StyleSheet,TouchableOpacity,ScrollView,Button,} from 'react-native';import { Header, Icon } from '
export default class Login extends React.Component {static navigationOptions = {title: 'Welcome',header: null};constructor(props) {super(props);state = {email: "",password: ""}}handleEmail = (text) =>
我正在实现身份验证,我的 props 有问题。当我显示 props 时,我没有 propsauthState,所以我收到一个错误,我不明白它来自哪里,也无法解决。错误如下:[21:42:10] TypeError: undefined is not an object (evaluating '_this$props$authState.app_started')This error is loc
如何解决此错误:在 /home/expo/workingdir/build/android 中运行“gradlew :app:assembleRelease”Welcome to Gradle 8.3!Here are the highlights of this release:- Faster Java compilation- Reduced memory usage- Support fo
这是完整的日志:eas build --platform ios --localLoaded "env" configuration for the "production" profile: no environment variables specified. Learn more✔ Using remote iOS credentials (Expo server)If you provid
我在 nx 工作区内本地构建 expo 管理的 iOS 应用时遇到了问题。我使用的是 Apple Silicon M2 Mac。我刚刚将 NX 工作区更新到最新版本 17.2.8这是我的环境: expo-env-info 1.0.5 environment info:System:OS: macOS 14.2.1Shell: 5.9 - /bin/zshBinaries:Node: 21.5.0
我正在开发一个 React 应用程序。我完成了它,现在我想构建它并通过 expo 将其部署到应用商店。问题是,当我使用代码eas build --platform ios构建它时。它开始构建,然后我不断遇到破坏构建的相同错误。当我运行应用程序并确保代码没有问题时。一切都运行正常。我不知道它为什么会破坏我的构建。这是构建代码日志:Creating GymfileGymfile createdSucc
我相信这是正在发生的事情:我的 MacOS 系统已更新,随后 Xcode 也更新到了版本 14。自从发生这种情况以来,我的 eas 本地构建再也无法成功完成。向 eas 构建系统提交构建仍然有效,但排队可能需要很长时间,因此当我需要构建 .ipa 以安装在真实设备上时,它会删除任何类型的快速反馈。这是我收到的错误消息。[RUN_FASTLANE] Please file a bug at http
我正在慢慢将我的 Expo 项目从 36.0.0 升级到 40.0.0。我通过一次更新一个版本来确保应用程序不会受到任何影响。但是,我遇到了一个问题,无法执行此操作。每当我运行时:expo update一切都运行正常,只是无法安装节点模块。这是完整的日志:$ expo updateWarning! Your git working tree is dirty.It's recommended to
I was able to install and run react-nativebut when I tried to install react native expo I got some errors这是我的 Expo 安装npm install -g expo-cliMicrosoft Windows [Version 10.0.16299.125](c) 2017 Microsoft
我想在我的 expo 项目中分离 expo 以获取裸的 react native 项目,在 expo detach 之后,我运行 pod install 时出现此错误,在安装 glog 期间该脚本太旧或缺失[!] C:/Program Files/Git/usr/bin/bash.exe -cset -e#!/bin/bash# Copyright (c) Facebook, Inc. and i
嗨,我正在尝试在我的 react-native 项目上运行“yarn android”。并且遇到了以下错误:yarn android v0.27.5$ react-native-scripts android10:37:45 AM: Starting packager...10:39:34 AM: Starting Android...10:39:37 AM: Packager started!T
无法从 expo 获取 localhost api。const search = async(type) => {let response = await fetch(http://localhost:3000/api/${type}, {accept: 'application/json'});let result = await response.json();return result;co
我目前正在学习 React Native。我刚刚构建了一个非常简单的应用程序来测试按钮组件。当我单击按钮组件时,控制台日志按预期打印。但是在打印出控制台日志后,它会弹出以下错误。**undefined is not an object (evaluating '_this2.btnPress().bind')**我不确定出了什么问题?有人可以告诉我我做错了什么吗? import React fro