Skip to content

v4.4.1

Compare
Choose a tag to compare
@bdlukaa bdlukaa released this 07 Mar 22:16
· 575 commits to master since this release
  • Dynamically adding/removing items in NavigationPane (#744)

  • Fix example application was showing window icons twice on transparency change and maximizing

  • Add TextFormBox.initialValue (#749)

  • Add PaneItem.enabled (#748)

  • Add Thai localization (#750)

  • FocusTraversalGroup is no longer added above paneBodyBuilder (#700)

  • BREAKING NavigationView.paneBodyBuilder now takes two arguments (#700)
    Before:

    NavigationView(
      paneBodyBuilder: (child) {
        return child;
      }
    ),

    Now:

    NavigationView(
      paneBodyBuilder: (item, child) {
        return child;
      }
    )
  • Use correct height and padding on TextBox (#754)

  • Updated TextBox cursor to match the native implementation (#754)

  • TextBox state is now updated correctly when focused (#754)

What's Changed

New Contributors

Full Changelog: v4.4.0...v4.4.1