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... } }
Libraries
- constant/strings
- custom_shape/bottom_curved_shape
- custom_theme/change_theme
- data/model/employees_details_model/employees_data_list
- data/model/employees_details_model/employees_details
- data/model/mfs_common_response_model/mfs_common_response
- data/model/mfs_common_response_model/mfs_common_service_response
- data/model/mfs_common_response_model/mfs_response_info
- data/model/mfs_common_response_model/mfs_status_info
- data/model/mfs_common_response_model/mfs_transaction_info
- data/model/mfs_common_response_model/wallet_info
- data/model/mfs_common_response_model/wallet_type
- data/model/user_details_model/user_details
- data/provider/mfs_common_response_provider
- data/provider/user_detais_provider
- data/repository/mfs_common_response_repository
- data/repository/user_details_repository
- domain/mfs_common_response/mfs_common_response_block
- domain/mfs_common_response/mfs_common_response_event
- domain/mfs_common_response/mfs_common_response_state
- domain/user_details_bloc
- domain/user_details_event
- domain/user_details_state
- main
- presentation/dashboard
- presentation/login_screen
- presentation/reward_point_list_screen
- presentation/widgets/reward_point_list_widget
- utils/snackbar_helper