Results 18 comments of RowgerGo

import { createStore, applyMiddleware, compose } from 'redux'; 修改\src\app\store\configureStore.js ``` let store; if (!(window.__REDUX_DEVTOOLS_EXTENSION__ || window.__REDUX_DEVTOOLS_EXTENSION__)){ store = createStoreWithMiddleware(rootReducer, initialState); } else { store = createStore( rootReducer, compose(initialState,window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__())...

``` settings: legacy: force: true interval: 0s schema: - name: autoBuild path: . commands: {} watcher: extensions: - go paths: - / ignored_paths: - .git - .realize - vendor scripts:...

> > 我在模拟器上也遇到了,android9.0的有,8.0的没有 > > 我目前的解决办法是把头部组件设置了zIndex来遮挡住白色圆圈 @JoshLipan 我在头部组件设置了zIndex: 1000,但是并没有效果

> 这边用小米8,Android9测试没问题,你们测试有问题的型号和版本是什么?请尽量用真机测试 我是华为荣耀V10,android 9,同样存在这个问题,指示器一直显示在头部

header组件用teaset的NavigationBar会显示指示器,但是如果使用react navigation自带的组件就不会显示。所以我修改了一下这个页面,把teaset的NavigationBar作为自定义组件放到react navigation自带的头部上面去。 ``` static navigationOptions = ({ navigation }) => ({ header: }); ```