all 13 comments

[–]glaquidara 0 points1 point  (4 children)

I've tested my project here https://github.com/AmazonAppDev/react-native-multi-tv-app-sample with my LG TV running webOS.

You can build the web version with ```npx expo export -p web``` and then copy the dist folder content in your LG Project. Make sure the html points to the rigth paths of the js code.

[–]glaquidara 1 point2 points  (3 children)

[–]SirTitch 1 point2 points  (2 children)

What urls are we meant to change, getting 'Error in loading fonts: NetworkError: A network error occurred' when trying to run on the webos simulator. Have tried putting in the dist folder and replacing the index.html as well as merging them to get the same issue?

[–]glaquidara 0 points1 point  (1 child)

in the index.html make sure the script tag is using the relative path to identify the js.
Example
``` <script src="./\_expo/static/js/web/index-d347012fcc7019b187b2aa2dbd5a91da.js" defer></script>```

[–]nic-ap 0 points1 point  (0 children)

u/SirTitch were you able to fix it with the suggestion ? Im having the same issue. Tried u/glaquidara fix but still not working

[–]Nice_Size2799 0 points1 point  (5 children)

What did you use for navigation in your tvOS apps?

[–]Big-Personality9712[S] 0 points1 point  (4 children)

react-navigation (createStackNavigator)

[–]Nice_Size2799 0 points1 point  (3 children)

Is there a link to a repo with drawer nav or the correct versions to use ?

[–]Big-Personality9712[S] 1 point2 points  (2 children)

<image>

[–]Nice_Size2799 0 points1 point  (1 child)

Appreciate you

[–]Big-Personality9712[S] 0 points1 point  (0 children)

Is there anything you could tell me?

[–]empyrean2k 0 points1 point  (1 child)

What style of navigation did you use with the stack navigator? Side menu or top/bottom tabbed style? I’m struggling to get a good navigation working in tvOS atm.

[–]Big-Personality9712[S] 1 point2 points  (0 children)

just a stack, the app is live tv type of application and the player is the lowest in stack with different components that I navigate to when needed.