React-navigation:增加底部标签导航的高度? [英] React-navigation: Increase height of the bottom tab navigation?

查看:48
本文介绍了React-navigation:增加底部标签导航的高度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用 react-navigation 为 React Native 应用程序创建了一个简单的选项卡导航.它工作正常,但我似乎无法调整它的高度.它最多只能达到大约 80,我需要它大约是当前高度的 150%,也许是两倍.

I created a simple tab navigation for a React Native app using react-navigation. It works fine, but I can't seem to adjust the height of it. It'll only go to a max of about 80, I need it to be about 150% of the current height, maybe double.

有谁知道如何增加选项卡导航的高度(最好不要再创建大约 6 个 js 文件?)我只有有限的时间来修复它.

Does anyone know how to increase the height of the tab nav (preferably without creating about 6 more js files? ) I only have a limited period to fix it as I'd like.

以下是导航代码原样

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { createBottomTabNavigator, createAppContainer } from "react-navigation";

import HomeScreen from './screens/HomeScreen';
import AboutScreen from './screens/AboutScreen';
import SettingsScreen from './screens/SettingsScreen';


export default class App extends React.Component {
  render() {
    return <AppContainer />;
  }
}

const AppNavigator = createBottomTabNavigator({
  Home: {
    screen: HomeScreen
  },
  About: {
    screen: AboutScreen
  },
  Settings: {
    screen: SettingsScreen
  }
}, {
  initialRouteName: "Home"
});

const AppContainer = createAppContainer(AppNavigator);

谢谢

推荐答案

如文档中所说,你只需要添加 tabBarOptions={style:{height:100}}

As said in the docs, you just need to add tabBarOptions={style:{height:100}}

例如:

bottomNavigatorConfigs = {
    initialRouteName: "HomeScreen",
    tabBarOptions: {
        style: { height: 300 },
    },
};

这是bottomNavigatorConfigs(已测试)和工作的示例.

This is an example of the bottomNavigatorConfigs (tested) and working.

bottomNavigatorConfigs 的用法如下:

Where bottomNavigatorConfigs is used like this:

createBottomTabNavigator(bottomRoutesConfig, bottomNavigatorConfigs);

来源:https://reactnavigation.org/docs/en/bottom-tab-navigator.html

这篇关于React-navigation:增加底部标签导航的高度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆