Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [4.1.0] - 09/08/2025

**Features**

- Add hour predicate attribute to datetime picker [PR#161](https://github.com/koukibadr/Bottom-Picker/pull/161) [ISSUE#160](https://github.com/koukibadr/Bottom-Picker/issues/160)

**Bug Fix**

- Resolve initial time initialization in date time picker [PR#159](https://github.com/koukibadr/Bottom-Picker/pull/159) [ISSUE#158](https://github.com/koukibadr/Bottom-Picker/issues/158)
- add SafeArea to prevent content overflow in edge-to-edge mode [PR#159](https://github.com/koukibadr/Bottom-Picker/pull/159)

## [4.0.1] - 31/07/2025

**Bug Fix**
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To add bottom picker to your project add this line to your pubspec.yaml file

```yaml
dependencies:
bottom_picker: ^4.0.1
bottom_picker: ^4.1.0
```

## Parameters
Expand Down Expand Up @@ -299,6 +299,9 @@ dependencies:

/// The bottom picker selector diameter ratio.
final double diameterRatio;

/// A predicate that can be used to select which hours are selectable.
SelectableHourPredicate? hourPredicate;
````

## Examples
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: bottom_picker
description: An easy way that let you create a bottom item picker or date & time picker with minmum parameters
version: 4.0.1
version: 4.1.0
homepage: 'https://github.com/koukibadr/Bottom-Picker'
environment:
sdk: '>=2.19.0 <4.0.0'
Expand Down