passkit_ui

Last updated:

0 purchases

passkit_ui Image
passkit_ui Images
Add to Cart

Description:

passkit ui

passkit_ui #







🚧 API is subject to change! 🚧
All passkit types can be shown, but might not look perfect.
Please create an issue and attach a sample PkPass file for wrongly displayed passes.

What is PassKit? #

Passes are a digital representation of information that might otherwise be printed on small pieces of paper or plastic. They let users take an action in the physical world. Passes can contain images and a barcode, and you can update passes using push notifications on iOS.
This technology consists of three main components:

A package format for creating passes.
A web service API for updating passes, implemented on your server.
An API used by your apps to interact with the user’s pass library.


A PkPass file looks something like this when rendered:



This package contains widgets to visualize PkPass files as seen above with the help of passkit. passkit is a pure Dart package, which works on servers, too.
This package does intentionally not support showing the "backside" of a PkPass file, since that requires a lot of features that depend on application logic.
Those include, among other things: sharing a pass, deleting a pass, having the ability to open URLs, emails and phone numbers.
You want to work with Apple's native PassKit APIs? Consider using apple_passkit in addition to this.
How to use it? #
Add the passkit and passkit_ui packages to your pubspec.yaml file
dependencies:
passkit: any # Use the latest available version
passkit_ui: any # Use the latest available version
copied to clipboard
Use it in your code:
import 'package:passkit/passkit.dart';
import 'package:passkit_ui/passkit_ui.dart';

// First load the PkPass file somewhere
final pkPass = await loadPass('assets/coupon.pkpass')

// Then in your widget, use the `PkPassWidget` and pass the PkPass to it
Center(child: PkPassWidget(pass: pkPass))
copied to clipboard
Apple Wallet PassKit docs #

Wallet Human Interface Guidelines
Wallet Passes
Loyalty passes
Wallet Developer Guide

Contributors #
Thanks a lot to all the awesome contributors:



Contribute to this library, and you'll show up too.
We encourage you to contribute to this library.
A good starting point is to look at these good first issues. Take a look at these issues
if you're up for a challenge.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.