flutter_wallet_card 3.0.4 copy "flutter_wallet_card: ^3.0.4" to clipboard
flutter_wallet_card: ^3.0.4 copied to clipboard

PlatformiOS

Flutter wallet card for iOS devices. Generate Apple Pass card using either locally stored file or download it from web via url.

example/lib/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter_wallet_card_example/pass.dart';

void main(List<String> args) {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return CupertinoApp(
      home: CupertinoPageScaffold(
        navigationBar: CupertinoNavigationBar(
          middle: const Text('Flutter Wallet Card Example'),
        ),
        child: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              const Text('Apple wallet cards using URL'),
              const SizedBox(height: 5),
              CupertinoButton.filled(
                onPressed: () => generateWalletPassFromUri(exampleUrl),
                child: Text('Add apple pass'),
              ),
              const SizedBox(height: 20),
              const Text('Apple wallet cards using File Path'),
              const SizedBox(height: 5),
              CupertinoButton.filled(
                onPressed: () => generateWalletPassFromPath(),
                child: Text('Add apple pass (from path)'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
23
likes
120
pub points
86%
popularity

Publisher

unverified uploader

Flutter wallet card for iOS devices. Generate Apple Pass card using either locally stored file or download it from web via url.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

archive, cli_script, crypto, dio, equatable, flutter, path, path_provider, uuid

More

Packages that depend on flutter_wallet_card