Chapter 25: Getting Started with App Clips
Apple introduced app clips during WWDC 2020. An app clip is a small part of an app that can be triggered in multiple ways, such as by visiting a website, scanning a QR code, or tapping an NFC tag. It allows users to quickly access and experience what an app has to offer.
In this chapter, you'll implement an app clip for the Let's Eat app that shows users the details of a particular restaurant. You'll start by adding an app clip to your project. You'll configure it to use the Restaurant Detail screen from your app, and you'll simulate passing data for a particular restaurant to the app from a URL, which will be displayed on the Restaurant Detail screen.
By the end of this chapter, you'll have learned how to create, configure, and test an app clip, and you'll be able to implement it for your own apps.
The following topics will be covered:
- Introducing app clips
- Adding an app clip to your...