最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

react native - Frequent navigation to the page causes style abnormalities - Stack Overflow

matteradmin8PV0评论

Current behavior

Frequent navigation to the page causes style abnormalities.

RootStackNavigator:

const RootStack = createNativeStackNavigator<any>();
const RootStackNavigator: React.FC = () => {
  const headerBack = useCallback(() => <HeaderBackIcon />, []);
  return (
    <RootStack.Navigator
      initialRouteName={'BottomTab'}
      screenOptions={{
        headerBackVisible: false,
        animation: 'slide_from_right',
        presentation: 'card',
        animationDuration: 100,
        headerTitleAlign: 'center',
        orientation: 'portrait',
        headerLeft: headerBack,
      }}
    >
      <RootStack.Screen
        name="BottomTab"
        component={BottomTabNavigator}
        options={{
          headerShown: false,
        }}
      />
      <RootStack.Group>
        <RootStack.Screen
          name="Login"
          component={LoginScreen}
          options={{
            headerShadowVisible: false,
          }}
        />
      </RootStack.Group>
    </RootStack.Navigator>
  );
};

BottomTabNavigator:

const MainTab = createBottomTabNavigator<any>();
const BottomTabNavigator: React.FC = () => {
  const simpleNavigate = useSimpleNavigate();
  const handleMePress = useCallback(
    (e: any) => {
      e.preventDefault();
      simpleNavigate('Login');
    },
    [simpleNavigate],
  );
  return (
    <MainTab.Navigator
      initialRouteName={'Home'}
      screenOptions={{
        headerTitleAlign: 'center',
      }}
    >
      <MainTab.Screen
        name="Home"
        component={HomeScreen}
        options={{
          tabBarLabel: 'Home',
        }}
      />
      <MainTab.Screen
        name="Everything"
        component={EverythingScreen}
        options={{
          tabBarLabel: 'Everything',
        }}
      />
      <MainTab.Screen
        name="Cart"
        component={CartScreen}
        options={{
          tabBarLabel: 'Bag',
        }}
      />
      <MainTab.Screen
        name="Me"
        component={MeScreen}
        options={{
          tabBarLabel: 'Me',
        }}
        listeners={{ tabPress: handleMePress }}
      />
    </MainTab.Navigator>
  );
};

LoginTab:

const LoginTab: React.FC<PropsType> = () => {
  return (
    <ScrollView
      bounces={false}
      showsHorizontalScrollIndicator={false}
      contentContainerStyle={styles.wrapper}
      scrollEventThrottle={64}
    >
      <View style={styles.formWrapper}>
        <View
          style={{ height: 100, width: 100, backgroundColor: 'blue' }}
        ></View>
      </View>
    </ScrollView>
  );
};

const styles = StyleSheet.create({
  wrapper: {
    paddingBottom: 28,
  },
  formWrapper: {
    marginBottom: 13,
  },
});
export default LoginTab;

Reproduction

/@saddhu/tab-style-abnormal?platform=ios

[email protected]:Chenjiujiu/AwesomeProject.git

Environment

{
  "name": "AwesomeProject",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "lint": "eslint .",
    "start": "react-native start",
    "test": "jest"
  },
  "dependencies": {
    "@react-navigation/bottom-tabs": "^7.0.3",
    "@react-navigation/native": "^7.0.2",
    "@react-navigation/native-stack": "^7.0.2",
    "react": "18.3.1",
    "react-native": "0.76.1",
    "react-native-pager-view": "^6.5.0",
    "react-native-safe-area-context": "^4.14.0",
    "react-native-screens": "^4.1.0",
    "react-native-tab-view": "^4.0.1"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@babel/runtime": "^7.25.0",
    "@react-native-community/cli": "15.0.0",
    "@react-native-community/cli-platform-android": "15.0.0",
    "@react-native-community/cli-platform-ios": "15.0.0",
    "@react-native/babel-preset": "0.76.1",
    "@react-native/eslint-config": "0.76.1",
    "@react-native/metro-config": "0.76.1",
    "@react-native/typescript-config": "0.76.1",
    "@types/react": "^18.2.6",
    "@types/react-test-renderer": "^18.0.0",
    "babel-jest": "^29.6.3",
    "eslint": "^8.19.0",
    "jest": "^29.6.3",
    "prettier": "2.8.8",
    "react-test-renderer": "18.3.1",
    "typescript": "5.0.4"
  },
  "engines": {
    "node": ">=18"
  }
}

Frequently entering the me page will display an exception after the 13th time

Post a comment

comment list (0)

  1. No comments so far