Skip to content

Commit a565f69

Browse files
committed
fix lint
1 parent 563418c commit a565f69

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [0.1.99]
4+
* **NEW**: Added `AdaptiveBlurView` widget - iOS 26+ Liquid Glass blur effects
5+
* iOS 26+: Native UIVisualEffectView with system blur styles (systemMaterial, systemThick, systemThin, etc.)
6+
* iOS <26 & Android: Flutter-based BackdropFilter with gaussian blur
7+
* Supports custom blur styles and border radius
8+
* Perfect for overlays, card backgrounds, and glassmorphic effects
9+
* **FIX**: Fixed `unselectedItemColor` behavior in AdaptiveBottomNavigationBar
10+
* When `unselectedItemColor` is null, now uses theme's default color instead of forcing a color
11+
* iOS 26+: Uses `.alwaysTemplate` rendering mode when no custom color provided
12+
* CupertinoTabBar: Removed forced `CupertinoColors.inactiveGray` fallback
13+
* **FIX**: Fixed iOS 26 toolbar layout issues
14+
* Back button now stays on the left when title is missing
15+
* Actions now properly align to the right when title is missing
16+
* Improved flexible space handling for all layout combinations
17+
318
## [0.1.98]
419
* **NEW**: Added `selectedItemColor` and `unselectedItemColor` support for AdaptiveBottomNavigationBar
520
* iOS 26+: Icon colors via renderingMode (`.alwaysOriginal` for unselected, `.alwaysTemplate` for selected)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ The example app includes:
11181118
- Style and size comparisons
11191119
- Dark mode support
11201120

1121-
### IOS26NativeSearchTabBar (EXPERIMENTAL)
1121+
### IOS26NativeSearchTabBar (EXPERIMENTAL) (Do not confuse it with a different widget, AdaptiveBottomNavigationBar.)
11221122

11231123
⚠️ **WARNING: This is a highly experimental feature with significant limitations. Only use for prototyping and demos.**
11241124

lib/src/widgets/adaptive_scaffold.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ class _AdaptiveScaffoldState extends State<AdaptiveScaffold> {
273273
}
274274
// Priority 2: Build from items
275275
else {
276-
final unselectedColor = widget.bottomNavigationBar!.unselectedItemColor;
276+
final unselectedColor =
277+
widget.bottomNavigationBar!.unselectedItemColor;
277278

278279
tabBar = CupertinoTabBar(
279280
currentIndex: widget.bottomNavigationBar!.selectedIndex!,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: adaptive_platform_ui
22
description: "Adaptive platform-specific widgets for Flutter. Auto renders native iOS 26+ liquid glass designs, traditional Cupertino widgets for older iOS versions, Material Design for Android."
3-
version: 0.1.98
3+
version: 0.1.99
44
homepage: https://github.com/berkaycatak/adaptive_platform_ui
55
screenshots:
66
- description: "iOS 26+ liquid glass designs"

0 commit comments

Comments
 (0)