Skip to content

Release version 1.2.0

Compare
Choose a tag to compare
@contrix09 contrix09 released this 13 Nov 04:27
  • Upgraded to use Xamarin.Forms version 3.3.
  • Added IMaterialDialog.InputAsync, which shows a dialog that allows the user to input text. A feature enhancement stated in this issue.
  • Added MaterialMenu control, a view container that will show a menu that allows the user to select a choice.
  • Reworked MaterialNavigatioPage.
    • Added an attached property AppBarColor. It can be attached to Pages to change the NavigationPage.BarBackgroundColor property.
    • Added an attached property AppBarTitleTextAlignment. It can be attached to Pages to change the NavigationPage.Title text alignment.
    • Added an attached property AppBarTitleTextColor. It can be attached to Pages to change the NavigationPage.Title text color.
    • Added an attached property AppBarTitleTextFontFamily. It can be attached to Pages to change the NavigationPage.Title text font family.
    • Added an attached property AppBarTitleTextFontSize. It can be attached to Pages to change the NavigationPage.Title text font size.
    • Added an attached property StatusBarColor. It can be attached to Pages to change the status bar color.
    • Added overrideable methods OnPagePush and OnPagePop.
  • The status bar color will now be set automatically when MaterialNavigationPage is used. You can still use Material.PlatformConfiguration.SetStatusBarColor to manually change the status bar color.
  • Added BottomOffset property to MaterialSnackbarConfiguration that can be used to adjust the bottom margin of the Snackbar. A feature enhancement stated in this issue.
  • Fixed a bug where MaterialCheckboxGroup does not update the selected items when the property SelectedIndices has been changed.
  • Renamed XF.Material.Forms.Views to XF.Material.Forms.UI. Removed XF.Material.Forms.Dialog namespace, added dialogs to namespace XF.Material.Forms.UI.Dialogs.