bottom_sheet_search 0.0.4
bottom_sheet_search: ^0.0.4 copied to clipboard
A bottom sheet search widget for flutter
Changelog #
0.0.4 2024-03-XX #
Added #
- New
BottomSheetDecorationclass for better theming organization- Encapsulates all visual customization properties
- Provides a cleaner API for styling bottom sheets
- Includes
copyWithmethod for easy modifications
Changed #
- Refactored
BottomSheetSearchWidgetto use the new decoration class - Improved code organization and maintainability
- Updated example app to demonstrate decoration usage
Breaking Changes #
- Individual styling properties have been moved to
BottomSheetDecoration - Previous style properties are now accessed through the decoration object:
// Old way BottomSheetSearchWidget( backgroundColor: Colors.white, searchBarColor: Colors.grey[200], borderColor: Colors.blue ) // New way BottomSheetSearchWidget( decoration: BottomSheetDecoration( backgroundColor: Colors.white, searchBarColor: Colors.grey[200], borderColor: Colors.blue, ), )