Реактив-роутер-родной не работает - PullRequest
0 голосов
/ 28 мая 2018

Ошибка: undefined не является объектом (оценивается '_this.context.router.history')

index.js:

          <Left>

              <Link to="/menu">
                <Image
                  source={require("./src/assets/images/home.png")}
                  style={styles.homeIcon}
                />
              </Link>
          </Left>
...
<NativeRouter>
          <Container>
            <Stack>
              <Route exact path="/" component={Login} />
              <Route
                path="/menu"
                component={() => <Menu showMenuIcon={this.showMenuIcon} />}
              />
              <Route
                path="/dialog"
                component={() => <Dialog showMenuIcon={this.showMenuIcon} />}
              />
              ...
            </Stack>
          </Container>
</NativeRouter>

После нажатия на Ссылка отображает ошибку.Что не так?

1 Ответ

0 голосов
/ 28 мая 2018

Попробуйте добавить nativeHistory к вашим маршрутам

import {nativeHistory} from 'react-router-native';

<Router history={nativeHistory}>

</Router>
...