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

outdatedDart 1 only

Ready-made various button styles for Flutter.

flutter_buttons #

Ready-made various button styles for Flutter.

Various buttons #

Finished App

Usage #

Use raised button:

    KRaisedButton(
        radius: 30.0,
        color: Colors.teal,
        text: 'Raised Button',
        textColor: Colors.white,
        textFontWeight: FontWeight.bold,
        onPressed: () => {},
    ),

Use outline button:

    KOutlineButton(
        radius: 30.0,
        borderColor: Colors.teal,
        text: 'Outline Button',
        textColor: Colors.teal,
        textFontWeight: FontWeight.bold,
        onPressed: () => {},
    ),

Use flat button:

    KFlatButton(
        radius: 30.0,
        color: Colors.teal,
        text: 'Flat Button',
        textColor: Colors.white,
        textFontWeight: FontWeight.bold,
        onPressed: () => {},
    ),

Use custom button with gradient:

    CustomButton(
        buttonColorGradient: [ Colors.teal.shade100, Colors.teal.shade900 ],
        buttonBorderColor: Colors.teal,
        buttonText: 'Custom button',
        buttonTextColor: Colors.white,
        highlightColor: Colors.white30,
        splashColor: Colors.white,
        onPressed: () {},
    )

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

0
likes
0
pub points
20%
popularity

Publisher

unverified uploader

Ready-made various button styles for Flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_buttons