NavigationLinks
do not display correctly in tvOS 26. When using a Button
, the correct behavior of vertically placing an Image
or AsyncImage
above one or two Text
fields occurs. However, when using NavigationLink
the image and text(s) are laid out horizontally. Attempting to fix this using a VStack
prevents the text from sliding down as the NavigationLink
receives focus. Using the hoverEffect
modifier does not help.
Using a Button
(correct behavior):
Using a NavigationLink
without VStack:
Using a NavigationLink
with VStack: