使用StackAction重置后,React Native Back按钮消失

时间:2018-08-27 05:04:39

标签: reactjs react-native react-navigation react-native-ios

它重置为StackAction,并且是一个带有四个标签的主要组件。

如果您导航至主标签中的另一页,则标题中不会创建后退按钮。

标题也是不可编辑的。

转到主标签

import pygame

pygame.init()
pygame.font.init()
myfont = pygame.font.SysFont('Raleway Bold', 72)

screen = pygame.display.set_mode((850, 600))
done = False

while not done:
        for event in pygame.event.get():
                if event.type == pygame.QUIT:
                        done = True

        screen.fill((8, 8, 8))
        textsurface = myfont.render('WELCOME', False, (205, 92, 92))
        screen.blit(textsurface,(250,200))

Tab1->其他组件

const resetAction = StackActions.reset({
 index: 0,
 actions: [
  NavigationActions.navigate({routeName: 'MainTab'}),
 ]
})
this.props.navigation.dispatch(resetAction);

navigator.js

this.props.navigation.navigate('OtherCompo');

0 个答案:

没有答案