reward_point 1.0.3+8
reward_point: ^1.0.3+8 copied to clipboard
Reward Point
reward_point #
A new Flutter module project.
Getting Started #
For help getting started with Flutter development, view the online documentation.
For instructions integrating Flutter modules to your existing applications, see the add-to-app documentation.
/// A widget that displays a curved bottom shape.
///
/// This widget can be used to create a curved bottom shape for containers
/// or other widgets.
///
/// Example:
/// dart /// BottomCurvedShape( /// child: Container( /// width: 200, /// height: 200, /// color: Colors.blue, /// ), /// ) ///
class BottomCurvedShape extends StatelessWidget {
/// Creates a curved bottom shape.
const BottomCurvedShape({Key? key, required this.child}) : super(key: key);
/// The child widget to display within the curved shape. final Widget child;
@override Widget build(BuildContext context) { // Implementation details... } }