legacy_buttons

Last updated:

0 purchases

legacy_buttons Image
legacy_buttons Images
Add to Cart

Description:

legacy buttons

legacy_buttons #
Use deprecated legacy buttons.
RaisedButton FlatButton and OutlineButton
Getting Started #
Import the package #
import'package:legacy_buttons/legacy_buttons.dart';
LegacyRaisedButton #
Use LegacyRaisedButton alternative to RaisedButton
LegacyRaisedButton(
onPressed: () {
print("Clicked LegacyRaiseButton");
},
child: Text("Legacy Raised Button"));
copied to clipboard
LegacyFlatButton #
Use LegacyFlatButton alternative to FlatButton
LegacyFlatButton(
onPressed: () {
print("Clicked LegacyFlatButton");
},
child: Text("Legacy Flat Button"));
copied to clipboard
LegacyOutlineButton #
Use LegacyOutlineButton alternative to OutlineButton
LegacyOutlineButton(
onPressed: () {
print("Clicked LegacyOutlineButton");
},
child: Text("Legacy Outline Button"));
copied to clipboard
Issues and pull requests are welcomed.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.