One Code to Rule Them All

Rate this content
Bookmark

The dream of using React for Web, Mobile Apps and beyond becomes reality. Thanks to Expo Router, we can confidently use the same routing logic for web and mobile, have it different layouts, use CSS, and with v3 even include API endpoints for Fullstack React Native apps. This talk will show you ways to go “all-in” on React Native, including other popular approaches that use Tamagui, Solito or Monorepos to build Universal Apps from one codebase.

Simon Grimm
Simon Grimm
20 min
18 Jun, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

In this talk, the speaker introduces using React Native with Expo to build mobile applications as well as web output. They explore the features of Expo Router, including file-based routing and CSS support. Expo Router also allows for universal links and web layouts, making it possible to build for different platforms from a single code base. The talk covers SEO, meta information, and API routes with Expo Router, and mentions the use of monorepositories with Next and Expo or React Native. The speaker discusses the future of Expo Router, including the upcoming Version 4 and the potential use of ReactStrictDOM and React Server Components. They also highlight the benefits of bringing Tailwind-CSS to React Native.

1. Introduction to React Native with Expo

Short description:

In this talk, I'm going to show you how you can go all in with React Native and not only build mobile applications, but also have a great web output. What if we could build for all platforms? That means for iOS, Android, and the web, all from the same code base. Let's explore the existing solutions and the limitations they have. Finally, I'll introduce a new way to use React Native with Expo.

What's up, React Summit, and welcome to my talk, One Code to Rule Them All. In this talk, I'm going to show you how you can go all in with React Native and not only build mobile applications, but also have a great web output.

So let's start by quick introduction. I'm Simon. You might have seen me someplace on the Internet before. I run a platform called galaxies.dev. I live here in beautiful Münster, Germany with my wife and my daughter, and when I'm not coding, I'm definitely running or working out in the garden.

But in this presentation, I want to take you on a journey. So let's dream. What if we could build for all platforms? That means for iOS, for Android, for the web and do it from the same code base. There's also a little star here because there's something we have to know, and that is if we want to build for all platforms, we also want to respect the platforms. We don't want to compromise what's making these platforms great in the beginning.

This has always been the dream of cross-platform applications, of universal applications. And of course, there are some solutions out there for years by now. So the most popular is probably also Flutter. There are mixed opinions about Flutter, but the basic problem is that Flutter usually renders your application and basically draws it pixel by pixel, and it's not really using what's making these platforms great. It's not using the actual native features of those platforms. Then we have other solutions. I've been a big fan of Ionic in the past with Capacitor. If you don't know about this, this is basically wrapping your web application in a web view and putting it in an app. This sounds worse than it actually is. So this is a legit solution in many cases, but you're running in a web view, so not really displaying anything that's native.

Then we got other solutions like Kotlin multiplatform. In the .NET world there's Maui, there's Tori coming up with Rust. There are many different solutions, but they all lack in some areas. And then of course, we got React Native, but with React Native, the main focus in the past was doing a great iOS and a great Android application. But what if you also wanted to have a web application? Well, at some point they introduced React Native Web, but it never really worked out in the way we wanted it. So there are, by now, new ways. And this is what I want to show you. So you can now use React Native with Expo, which is also anyway a great recommendation, but the Expo router.

2. Exploring the Features of Expo Router

Short description:

And with the Expo router, we got tons of new options to build our applications. Expo router introduces many cool things into a React Native application. Maybe the most important one is file-based routing. At this point, probably Expo router version 4 is out with new features and a really stable version that we can use in our application. Let's take a closer look at these features, starting with file-based routing.

And with the Expo router, we got tons of new options to build our applications. And the dream that we talked about, what if we could build for all these platforms from one code base, is actually becoming a reality. So let me show you a few features of Expo router.

So why should you actually consider Expo router? Let's start with a high level view with this great picture from the introduction of Expo router version 2. By the way, did you know that this is called a Bento style? I learned this from my designer. Like these things, you've seen this from Vercel, Next.js all the time. I think it's called Bento style.

So why Expo router? Expo router introduces many cool things into a React Native application. Maybe the most important one is file-based routing here. Because with file-based routing, you can get the same URL on the web if you built your app for the web, and you can use that scheme as well for your native applications to navigate around. It works really, really great. But beyond that, there are many other interesting things that we're going to get into. CSS support, type routes, async routes. And on top of that, this was just Expo router version 2. At this point, we've also seen Expo router version 3, which introduced API routes. So you can have API routes next to your React Native application code, which is a super interesting concept and kind of ties into this whole concept of everything is becoming one again. So we've seen this, for example, with Next.js, with server components, the API routes. Everything is kind of going full circle back to the old days of PHP, but in a better way, of course. This is also happening for React Native. We can see it here that we could have API routes in our project as well with Expo router. These were just version 2 and version 3.

At this point at React Summit, probably Expo router version 4 is out with new features and really stable version that we can use in our application. More on how we can use Expo router in a second. So let's take a closer look at these features. For example, the first one I gave you is file-based routing. File-based routing is probably popular to everyone who has used Next.js, Swellkit, any kind of popular full stack framework these days. And it works exactly the same for native applications with React Native. We can have a folder, then we have a home TSX and then we have a stack definition and we have this post file with brackets, which means this is a dynamic URL. We can pass an ID or a post ID to that page and it is just amazing in how it works. It is a complete mindset shift for native developers because we usually think in screens and pages, but if we adopt this concept, we can easily also build for the web because all these things would turn into slash home, slash home, slash new and we can use that to our advantage.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Raising the Bar: Our Journey Making React Native a Preferred Choice
React Advanced Conference 2023React Advanced Conference 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
At Microsoft, we're committed to providing our teams with the best tools and technologies to build high-quality mobile applications. React Native has long been a preferred choice for its high performance and great user experience, but getting stakeholders on board can be a challenge. In this talk, we will share our journey of making React Native a preferred choice for stakeholders who prioritize ease of integration and developer experience. We'll discuss the specific strategies we used to achieve our goal and the results we achieved.
Opensource Documentation—Tales from React and React Native
React Finland 2021React Finland 2021
27 min
Opensource Documentation—Tales from React and React Native
Documentation is often your community's first point of contact with your project and their daily companion at work. So why is documentation the last thing that gets done, and how can we do it better? This talk shares how important documentation is for React and React Native and how you can invest in or contribute to making your favourite project's docs to build a thriving community
Bringing React Server Components to React Native
React Day Berlin 2023React Day Berlin 2023
29 min
Bringing React Server Components to React Native
Top Content
React Server Components are new topic in community, bunch of frameworks are implementing them, people are discussing around this topic. But what if we could use React Server Components in React Native? And bring all optimisation features that RSC allows to mobile apps? In this talk I would present what we are able to do with RSC in React Native!
Building Cross-Platform Component Libraries for Web and Native with React
React Advanced Conference 2021React Advanced Conference 2021
21 min
Building Cross-Platform Component Libraries for Web and Native with React
Top Content
Building products for multiple platforms such as web and mobile often requires separate code-based despite most of the components being identical in look and feel. Is there a way where we could use shared React component library on different platforms and save time? In this presentation I'll demonstrate one way to build truly cross-platform component library with a unique approach of using React & React Native in combination.
React Native Kotlin Multiplatform Toolkit
React Day Berlin 2022React Day Berlin 2022
26 min
React Native Kotlin Multiplatform Toolkit
Top Content
Combining the best of two cross-platform frameworks to build the ultimate multiplatform development experience.
MDX in React-Native!?
React Advanced Conference 2021React Advanced Conference 2021
21 min
MDX in React-Native!?
Top Content
How to use MDX in React-Native to great effect and the challenges you didn't know you signed up for.

Workshops on related topic

Introducing FlashList: Let's build a performant React Native list all together
React Advanced Conference 2022React Advanced Conference 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
WorkshopFree
David Cortés Fulla
Marek Fořt
Talha Naqvi
3 authors
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
WorkshopFree
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
How to Build an Interactive “Wheel of Fortune” Animation with React Native
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
Oli Bates
Oli Bates
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
Effective Detox Testing
React Advanced Conference 2023React Advanced Conference 2023
159 min
Effective Detox Testing
Workshop
Josh Justice
Josh Justice
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
Deploying React Native Apps in the Cloud
React Summit 2023React Summit 2023
88 min
Deploying React Native Apps in the Cloud
WorkshopFree
Cecelia Martinez
Cecelia Martinez
Deploying React Native apps manually on a local machine can be complex. The differences between Android and iOS require developers to use specific tools and processes for each platform, including hardware requirements for iOS. Manual deployments also make it difficult to manage signing credentials, environment configurations, track releases, and to collaborate as a team.
Appflow is the cloud mobile DevOps platform built by Ionic. Using a service like Appflow to build React Native apps not only provides access to powerful computing resources, it can simplify the deployment process by providing a centralized environment for managing and distributing your app to multiple platforms. This can save time and resources, enable collaboration, as well as improve the overall reliability and scalability of an app.
In this workshop, you’ll deploy a React Native application for delivery to Android and iOS test devices using Appflow. You’ll also learn the steps for publishing to Google Play and Apple App Stores. No previous experience with deploying native applications is required, and you’ll come away with a deeper understanding of the mobile deployment process and best practices for how to use a cloud mobile DevOps platform to ship quickly at scale.
Introduction to React Native Testing Library
React Advanced Conference 2022React Advanced Conference 2022
131 min
Introduction to React Native Testing Library
Workshop
Josh Justice
Josh Justice
Are you satisfied with your test suites? If you said no, you’re not alone—most developers aren’t. And testing in React Native is harder than on most platforms. How can you write JavaScript tests when the JS and native code are so intertwined? And what in the world are you supposed to do about that persistent act() warning? Faced with these challenges, some teams are never able to make any progress testing their React Native app, and others end up with tests that don’t seem to help and only take extra time to maintain.
But it doesn’t have to be this way. React Native Testing Library (RNTL) is a great library for component testing, and with the right mental model you can use it to implement tests that are low-cost and high-value. In this three-hour workshop you’ll learn the tools, techniques, and principles you need to implement tests that will help you ship your React Native app with confidence. You’ll walk away with a clear vision for the goal of your component tests and with techniques that will help you address any obstacle that gets in the way of that goal.you will know:- The different kinds React Native tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting text, image, and native code elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RNTL tests and how to handle them- Options for handling native functions and components in your JavaScript tests
Prerequisites:- Familiarity with building applications with React Native- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Native Testing Library- Machine setup: Node 16.x or 18.x, Yarn, be able to successfully create and run a new Expo app following the instructions on https://docs.expo.dev/get-started/create-a-new-app/