4

Is there any way to create passes/cards for Apple wallet and google wallet? In swift this is done with passkit. How can I do it in Flutter!?

Note I want to had card like tickets, boarding pass, loyalty card. I am not looking after adding credit card or payment methods

Thanksenter image description here

M4trix Dev
  • 1,828
  • 3
  • 23
  • 48

1 Answers1

0

Actually now there is a pass_flutter library for that.

Update: in version 2.0.0, you can now save passes like so:

import 'package:pass_flutter/pass_flutter.dart';

PassFile passFile = await Pass().fetchPreviewFromUrl(url: 'https://link_to_pass/pass.pkpass');
passFile.save();
Despotovic
  • 1,807
  • 2
  • 20
  • 24