pass_flutter 1.0.1 copy "pass_flutter: ^1.0.1" to clipboard
pass_flutter: ^1.0.1 copied to clipboard

outdated

A Flutter library for getting and reading Apple Wallet passes.

Apple Wallet logo

pass-flutter #

A Flutter library for work with Apple Wallet passes.

How use it #

Getting pass from URL to internal memory #

import 'package:pass_flutter/pass_flutter.dart';

PassFile passes = await new Pass().getFromUrl('https://link_to_pass/pass.pkpass');

Getting list of all saved passes #

import 'package:pass_flutter/pass_flutter.dart';

List<PassFile> passFile = await new Pass().getAllSaved();

Delete pass file from internal memory #

import 'package:pass_flutter/pass_flutter.dart';

Pass pass = new Pass();
PassFile passFile = await pass.getFromUrl('https://link_to_pass/pass.pkpass');
await pass.delete(passFile);

Contribute #

Please feel free to fork, improve, make pull requests or fill issues. I'll be glad to fix bugs you encountered or improve the extension.

33
likes
0
pub points
84%
popularity

Publisher

unverified uploader

A Flutter library for getting and reading Apple Wallet passes.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

archive, dio, flutter, json_annotation, path, path_provider, uuid

More

Packages that depend on pass_flutter