saved feeds in tab bar

This commit is contained in:
Ansh Nanda 2023-05-15 11:00:54 -07:00
parent 5010861160
commit d7e39bde12
5 changed files with 50 additions and 22 deletions

View file

@ -45,7 +45,11 @@ export const FeedsTabBar = observer(
</TouchableOpacity>
<TabBar
{...props}
items={['Following', "What's hot"]}
items={[
'Following',
"What's hot",
...store.me.savedFeeds.listOfFeedNames,
]}
indicatorPosition="bottom"
indicatorColor={pal.colors.link}
/>