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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## [4.0.1] - 31/07/2025

**Bug Fix**

- Resolve `EdgeInsetsGeometry.zero` build issue [ISSUE#156](https://github.com/koukibadr/Bottom-Picker/issues/156)

## [4.0.0] - 26/07/2025

**Features**

- Add filter for unpick or block some days [PR#150](https://github.com/koukibadr/Bottom-Picker/pull/150) [ISSUE#148](https://github.com/koukibadr/Bottom-Picker/issues/148)
- Transform `pickerTitle` into an optional header builder callback [PR#146](https://github.com/koukibadr/Bottom-Picker/pull/146)
- Add year picker [PR#153](https://github.com/koukibadr/Bottom-Picker/pull/153) [ISSUE#147](https://github.com/koukibadr/Bottom-Picker/issues/147)
Expand All @@ -10,6 +17,7 @@
- Add `diameterRatio` parameter for simple picker display [PR#154](https://github.com/koukibadr/Bottom-Picker/pull/154)

**Bug Fix**

- `selectedItemIndex` parameters does not work for simple picker
- Resolve issue regarding `seleectedIndex` for Web and desktop platforms

Expand Down
2 changes: 1 addition & 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.0
bottom_picker: ^4.0.1
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion lib/bottom_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ class BottomPickerState extends State<BottomPicker> {
Padding(
padding: widget.headerBuilder == null
? widget.titlePadding ?? const EdgeInsets.all(0)
: EdgeInsetsGeometry.zero,
: EdgeInsets.zero,
child: Row(
children: [
if (widget.headerBuilder != null)
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.0
version: 4.0.1
homepage: 'https://github.com/koukibadr/Bottom-Picker'
environment:
sdk: '>=2.19.0 <4.0.0'
Expand Down