bottom_sheet_search 1.0.0 copy "bottom_sheet_search: ^1.0.0" to clipboard
bottom_sheet_search: ^1.0.0 copied to clipboard

A bottom sheet search widget for flutter

Changelog #

0.0.4 2024-03-XX #

Added #

  • New BottomSheetDecoration class for better theming organization
    • Encapsulates all visual customization properties
    • Provides a cleaner API for styling bottom sheets
    • Includes copyWith method for easy modifications

Changed #

  • Refactored BottomSheetSearchWidget to 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,
      ),
    )
    
8
likes
135
points
28
downloads

Publisher

verified publisherhbosoftware.com

Weekly Downloads

A bottom sheet search widget for flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on bottom_sheet_search