我在一个项目中使用指数和shoutem/ui。
这是指数的内置导航
https://github.com/exponent/ex-navigation
我试图弄清楚如何使用shoutem / ui使用搜索框和过滤器下拉菜单自定义导航栏。
https://github.com/shoutem/ui/tree/develop/navigation
它们是 2 个相互排斥的导航栏实现,我只需要选择一个吗?
如果是这样,我假设我应该使用 ex-navigation 中内置的指数 - 但我不确定如何设置字体并为其添加输入框。
我是否将按钮添加到 navigationBar 道具中的属性?例如:
static route = {
navigationBar: {
visible: true,
title: 'Join a Game',
renderTitle: () => ( <Title>TITLE</Title> ),
},
};