flutter_donation_buttons 0.1.6 copy "flutter_donation_buttons: ^0.1.6" to clipboard
flutter_donation_buttons: ^0.1.6 copied to clipboard

A collection of your most used donation/support buttons to support your development.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Donation Buttons Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            KofiButton(
              kofiName: "flajt",
              kofiColor: KofiColor.Red,
              onDonation: () {
                // Runs after the button has been pressed
                debugPrint("On donation");
              },
            ),
            const PayPalButton(paypalButtonId: "T6NT2YYTVX6VS"),
            const PatreonButton(
                patreonName:
                    "buttonshy"), // Just someone I stumbled across on Patreon as an example, not affiliated with him

            const BuyMeACoffeeButton(
              buyMeACoffeeName: "flajt",
              color: BuyMeACoffeeColor.Green,
              //Allows custom styling
              style: ButtonStyle(
                  fixedSize: MaterialStatePropertyAll(Size(250, 100))),
            ),
          ],
        ),
      ),
    );
  }
}
17
likes
0
pub points
79%
popularity

Publisher

unverified uploader

A collection of your most used donation/support buttons to support your development.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, simple_icons, url_launcher

More

Packages that depend on flutter_donation_buttons