smooth_widgets 0.0.1
smooth_widgets: ^0.0.1 copied to clipboard
Smooth Widgets for Flutter Projects
Smooth Widgets #
Smooth Widgets is a collection of custom widgets for Flutter, designed to help you build beautiful and responsive user interfaces quickly and easily.
Features #
This package currently includes the following widgets:
SmoothTextButton:A customizable button widget with smooth animations and multiple styles.
Usage #
To use Smooth Widgets in your Flutter project, simply add the following dependency to your pubspec.yaml file:
dependencies:
smooth_widgets: ^0.0.1
Then, import the package and use any of the included widgets in your Flutter code:
import 'package:smooth_widgets/smooth_widgets.dart';
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SmoothButton(
text: 'Click me!',
onPressed: () => print('Button pressed!'),
);
}
}
Contributing #
This package is open-source and contributions are always welcome! If you find a bug or have a feature request, please file an issue on GitHub.
If you would like to contribute code to this project, please fork the repository and submit a pull request.
License #
This package is released under the MIT License. See LICENSE file for details.