TabView - Header not showing on Android #19331
-
Beta Was this translation helpful? Give feedback.
Answered by
morning4coffe-dev
Jan 27, 2025
Replies: 3 comments 7 replies
-
Hey @ilira987, thank you for your question. When you are using the latest Uno versions, you need to use the standard <TabView HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
<TabViewItem Header="Home"
IsClosable="False">
<TabViewItem.IconSource>
<SymbolIconSource Symbol="Home" />
</TabViewItem.IconSource>
</TabViewItem>
<TabViewItem Header="Doc-1">
<TabViewItem.IconSource>
<SymbolIconSource Symbol="Document" />
</TabViewItem.IconSource>
</TabViewItem>
<TabViewItem Header="Doc-2">
<TabViewItem.IconSource>
<SymbolIconSource Symbol="Document" />
</TabViewItem.IconSource>
</TabViewItem>
<TabViewItem Header="Doc-3">
<TabViewItem.IconSource>
<SymbolIconSource Symbol="Document" />
</TabViewItem.IconSource>
</TabViewItem>
</TabView> |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
morning4coffe-dev
-
Hello @morning4coffe-dev , found a solution, the problem was in the uno.sdk version in global.json - it was 5.5.62, updated to 5,6,20, it's ok now. Best regards. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Solution found, in the latest post. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @ilira987,
thank you for your question. When you are using the latest Uno versions, you need to use the standard
TabView
.