【发布时间】:2026-01-22 12:25:01
【问题描述】:
我想移除 React Native 中标题底部的模糊边框。我正在使用useLayoutEffect() 钩子来修改标题但无法删除边框。我尝试在headerStyle 中使用borderBottomWidth: 0,但它不起作用。
useLayoutEffect(() => {
navigation.setOptions({
title: "Signal",
headerStyle: { backgroundColor: "#fff", borderBottomWidth: 0 },
headerTitleStyle: { color: "#000" },
headerTintColor: "#000",
});
}, [navigation]);
【问题讨论】:
标签: javascript react-native react-hooks border