如何更改 React Native 中底部栏(导航选项卡下方)的颜色

问题描述 投票:0回答:1

在 Android 上,我想将屏幕上的底部栏从黑色更改为半透明,请检查图像,它是导航选项卡下方的栏。我正在使用 React Native 开发应用程序,使用 React 导航..

react-native expo
1个回答
0
投票

您可以使用

SafeAreaView
并且可以添加背景颜色,例如:-

import {SafeAreaView} from 'react-native';

const Demo = ({
    return (
        <SafeAreaView style={{backgroundColor: 'black'}}>
        </SafeAreaView>
    )
})
© www.soinside.com 2019 - 2024. All rights reserved.