React Native Material 底部选项卡边框半径

Ast*_*oud 2 react-native react-navigation

我只是想找到一种方法来改变我的材料底部选项卡就像这样

有没有办法做这样的事情?

在此输入图像描述

我无法使用 barStyle 对它应用边框半径

    <Tab.Navigator
    initialRouteName="Home"
    activeColor={Colors.primary}
    inactiveColor="black"
    barStyle={{ backgroundColor: 'white', borderRadius: 30}}
    >
Run Code Online (Sandbox Code Playgroud)

Gur*_*ran 8

您需要有一个溢出:“隐藏”和一个位置:“绝对”

    barStyle={{
      backgroundColor: 'white',
      position: 'absolute',
      overflow: 'hidden',
      borderTopLeftRadius: 30,
      borderTopRightRadius: 30,
    }}>
Run Code Online (Sandbox Code Playgroud)