我尝试将 Firebase Crashlytics 设置到我的 React Native 项目中。添加构建阶段脚本后构建项目时,我收到以下错误。
错误:
MY-APP-ABC/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run:没有这样的文件或目录
当我查看 MY-APP-ABC 文件夹时,我在任何地方都看不到SourcePackages文件夹。
目前我正在开发一个带有 React 和 Material UI 的项目。我想将鼠标悬停在将打开菜单的选项卡上,但这实际上不起作用。我希望你们能帮助我(也许告诉我我是否正确地接近这个)
我的标签基于:https : //imgur.com/a/HeiL2xo
我目前的项目:https : //imgur.com/a/Ik5NEkF
AppBarTop 类
class AppBarTop extends Component {
state = {
value: 0,
open: false,
anchorEl: null
};
handleMenuClick = (index) => {
}
handleMenuOpen = (index, event) => {
const {currentTarget} = event;
this.setState({
open: !this.state.open,
anchorEl: currentTarget,
value: index
})
};
handleMenuClose = () => {
this.setState({
open: false,
anchorEl: null,
})
}
handleInputSearch = () => {
};
render() {
const {classes} = this.props; …
Run Code Online (Sandbox Code Playgroud)