passkit 0.0.3 copy "passkit: ^0.0.3" to clipboard
passkit: ^0.0.3 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);
  }
}

Currently unsupported functionality #

Feel free to submit PRs for them

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, barcode, csslib, http, http_parser, json_annotation

More

Packages that depend on passkit