flutter_apple_wallet_button 0.0.1 copy "flutter_apple_wallet_button: ^0.0.1" to clipboard
flutter_apple_wallet_button: ^0.0.1 copied to clipboard

PlatformiOS

A Flutter plugin for Apple Wallet button.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_apple_wallet_button/flutter_apple_wallet_button.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: AppleWalletButton(),
        ),
      ),
    );
  }
}
0
likes
140
points
65
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for Apple Wallet button.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_apple_wallet_button