twinkle_button 0.0.3 copy "twinkle_button: ^0.0.3" to clipboard
twinkle_button: ^0.0.3 copied to clipboard

A button plug-in that can flash.

example/lib/main.dart

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

void main() => runApp(MyApp());

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

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Twinkle Button'),
        ),
        body: Column(
          children: <Widget>[
            Expanded(
              flex: 1,
              child: Center(
                child: TwinkleButton(
                    buttonTitle: Text(
                      'Download',
                      style: TextStyle(
                        color: Colors.white,
                        fontWeight: FontWeight.w700,
                        fontSize: 17.0,
                      ),
                    ),
                    buttonColor: Color(0xffFF4758),
                    twinkleTime: 100,
                    onclickButtonFunction: () {
                      print('hello');
                    }
                ),
              ),
            ),
            Expanded(
              flex: 1,
              child: Center(
                child: TwinkleButton(
                    buttonTitle: Text(
                      'Subscribe with Free Trial',
                      style: TextStyle(
                        color: Colors.white,
                        fontWeight: FontWeight.w300,
                        fontSize: 17.0,
                      ),
                    ),
                    buttonColor: Color(0xff3dce89),
                    onclickButtonFunction: () {
                      print('hello');
                    }
                ),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
18
likes
30
pub points
57%
popularity

Publisher

unverified uploader

A button plug-in that can flash.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on twinkle_button