In the previous chapter, we built the server side of RNTrivia. React Native wasn’t even involved in that task, but that’s about to change. Now it’s time to build the client side of the equation, our React Native RNTrivia app.
While there’s more code to the app itself than there was the server, none of it is very complicated. That’s because the server did most of the heavy lifting. However, one of the beautiful things about being relatively simple is that it provides me with an opportunity to introduce a few new concepts, without that being overwhelming.
Before we get to actual code, ...