Skip to content

Releases: HornMichaelS/flutter_avoid_keyboard

Version 0.3.0

Choose a tag to compare

@HornMichaelS HornMichaelS released this 10 Jun 19:59

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

Choose a tag to compare

@HornMichaelS HornMichaelS released this 08 Jun 20:22

Added

  • Github issue templates

Fixed

  • Prevent internal timeout exception from escaping.

Version 0.2.2

Choose a tag to compare

@HornMichaelS HornMichaelS released this 06 Jun 19:12

Changed

  • Wrapped the view in a ClipRect so 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.

Fixed

  • Formatting error in Changelog.
  • Layout bug related to positioning a viewport within an unsized parent.
    • Use AnimatedContainer with transform, rather than a Scrollable widget.

Version 0.2.1-alpha

Version 0.2.1-alpha Pre-release
Pre-release

Choose a tag to compare

@HornMichaelS HornMichaelS released this 06 Jun 00:20

Fixed

  • Typo in Readme.
  • Removed extraneous print statement.

Version 0.2.0-alpha

Version 0.2.0-alpha Pre-release
Pre-release

Choose a tag to compare

@HornMichaelS HornMichaelS released this 05 Jun 23:59

Added

  • Option to specify spacing between the top of the keyboard and the bottom of the
    focused text field.

Changed

  • No longer require focusNodes field on AvoidKeyboard widget.

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

Version 0.1.1-alpha Pre-release
Pre-release

Choose a tag to compare

@HornMichaelS HornMichaelS released this 05 Jun 15:28

Changed

  • Improved pubspec.yaml description field

Initial Release

Initial Release Pre-release
Pre-release

Choose a tag to compare

@HornMichaelS HornMichaelS released this 04 Jun 22:12

Added

  • README.md explaining the motivation and usage for the package.
  • Dart library containing the AvoidKeyboard widget
  • An example app under /example