flutter_adaptive 4.1.0
flutter_adaptive: ^4.1.0 copied to clipboard
A series of widgets and utilities that adapt to the current platform.
4.1.0 #
Routeno longer shows aDividerunder the app bar
4.0.2 #
- Fixed
use_build_context_synchronouslylint warning
4.0.1 #
- Format files
4.0.0 #
This version requires Flutter 3.7.0 or greater
BREAKING CHANGES:
- Add support for Flutter 3.7.0
3.0.2 #
- Fixed an error in
ListTilewhentitlewasnull
3.0.1 #
- Fix wrong doc comment
3.0.0 #
This version requires Flutter 3.3.0 or greater
BREAKING CHANGES:
- Replaced custom flexible space bar with
SliverAppBar.large - Add support for Flutter 3.3.0
2.3.0 #
- On iOS
ListTiles no longer have amaxLineslimit set to 1
2.2.1 #
- Updated changelog
2.2.0 #
BREAKING CHANGES:
- Moved
Iconsclass in a separate package (adaptive_icons)
2.1.0 #
- Add vertical spacing to dialog buttons for when they are placed vertically
2.0.1 #
- Fix issues with
showDatePicker()andshowActionSheet()
2.0.0 #
BREAKING CHANGES:
-
Remove
isIOSexport in favor of a getter onBuildContextinstances via an extension. This allows widgets to adapt to the current platform for web users too.Replace
import 'package:flutter_adaptive/flutter_adaptive.dart' as adaptive; adaptive.isIOS;with
// The extension with the isIOS getter is exported from here import 'package:flutter_adaptive/platform.dart'; context.isIOS; -
scrollPhysicsand all icons now require aBuildContextReplace
import 'package:flutter_adaptive/flutter_adaptive.dart' as adaptive; adaptive.scrollPhysics; Icon(adaptive.Icons.add);with
import 'package:flutter_adaptive/flutter_adaptive.dart' as adaptive; adaptive.scrollPhysics(context); Icon(adaptive.Icons.add(context));
1.1.0 #
- Add
onGeneratePreviousPageTitleglobal. Use this to generate a route'spreviousPageTitlefrom just one place if your use-case allows this.
1.0.2 #
- Update README
1.0.1 #
- Add example
- Add documentation
1.0.0 #
- Initial release