Releases: HornMichaelS/flutter_avoid_keyboard
Releases · HornMichaelS/flutter_avoid_keyboard
Release list
Version 0.3.0
Added
- Now the package responds to focus events while the keyboard is up, so now, if you have a group of fields which can be traversed
by pressing "next" on the keyboard, for example, each one will scroll into view as it is focused. - Added badges to readme
Changed
- Updated example app to exhibit focus node traversal.
Fixed
- Fixed a couple of issues with the changelog.
Version 0.2.3
Added
- Github issue templates
Fixed
- Prevent internal timeout exception from escaping.
Version 0.2.2
Changed
- Wrapped the view in a
ClipRectso that the contents would be clipped when they move.- This prevents the contents of the view from colliding with surrounding views which
aren't wrapped.
- This prevents the contents of the view from colliding with surrounding views which
Fixed
- Formatting error in Changelog.
- Layout bug related to positioning a viewport within an unsized parent.
- Use
AnimatedContainerwithtransform, rather than aScrollablewidget.
- Use
Version 0.2.1-alpha
Fixed
- Typo in Readme.
- Removed extraneous print statement.
Version 0.2.0-alpha
Added
- Option to specify spacing between the top of the keyboard and the bottom of the
focused text field.
Changed
- No longer require
focusNodesfield onAvoidKeyboardwidget.
Fixed
- Fixed bug in detecting when the focused field changed from one active node to another.
- Ordering of Changelog entries
Version 0.1.1-alpha
Changed
- Improved pubspec.yaml description field
Initial Release
Added
- README.md explaining the motivation and usage for the package.
- Dart library containing the
AvoidKeyboardwidget - An example app under /example