passkit 0.0.4 copy "passkit: ^0.0.4" to clipboard
passkit: ^0.0.4 copied to clipboard

Pure Dart library which can read Apple's PKPass files. Works on servers too.

PassKit #

pub package likes popularity pub points

Twitter Follow GitHub followers

🚧 API is subject to change! 🚧 The API should become a lot more stable once this package fully supports localization.

PassKit allows you to work with Apple's PkPass files. This is a pure Dart library. No Flutter needed.

In order to show PassKit files in Flutter, use the passkit_ui package, which includes ready made widgets.

Want to work with Apple's native PassKit APIs? Consider using apple_passkit.

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:

How to read a PassKit file? #

import 'package:passkit/passkit.dart';

void main() {
  final passKitBytes = ... // get bytes for the PassKit from somewhere
  final pkPass = PkPass.fromBytes(passKitBytes);
}

How to get the latest version of a given PkPass? #

import 'package:passkit/passkit.dart';

void main() {
  final passKitBytes = ... // get bytes for the PassKit from somewhere
  final pkPass = PkPass.fromBytes(passKitBytes);

  if(pkPass.isWebServiceAvailable) {
    final pkPassBytes = PassKitWebClient().getLatestVersion(pkPass);
  }
}

Unsupported or experimental functionality #

Please feel encouraged to create PRs for the following features.

  • PassKit Web Service: This functionality is existing, but might not work. Please file an issue or create a PR with a fix for bugs you encounter.
    • Push Notification update registration is only working on iOS due to this whole specification being an Apple thingy.
  • Localization: Existing, but still inconvenient to use. There might be issues due to localizations being UTF-16 formatted, but the library currently uses UTF-8 to read localizations.
  • Passkit creation
  • Signature verification is missing

Apple Wallet PassKit docs #

Bugs and parsing issues #

If you hit an issue with parsing, please create an issue and attach the PkPass (if possible).

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.

7
likes
0
pub points
67%
popularity

Publisher

verified publisheruekoetter.dev

Pure Dart library which can read Apple's PKPass files. Works on servers too.

Repository (GitHub)
View/report issues

Topics

#passkit #pkpass

License

unknown (license)

Dependencies

archive, crypto, csslib, http, http_parser, intl, json_annotation

More

Packages that depend on passkit