You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.