diff --git a/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml b/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml index fdcc2c65..5d78e05d 100644 --- a/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml +++ b/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml @@ -19,7 +19,7 @@ IsEnabled="{TemplateBinding IsEnabled}" Background="{TemplateBinding Background}" HeightRequest="{TemplateBinding HeightRequest}" - ColumnDefinitions="Auto,*" + ColumnDefinitions="Auto,*,Auto" > + + + diff --git a/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml.cs b/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml.cs index 48dc966b..0de8a567 100644 --- a/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml.cs +++ b/src/SharedMauiXamlStylesLibrary.Syncfusion/ContentViews/AccountConventView.xaml.cs @@ -6,6 +6,9 @@ public partial class AccountConventView : ContentView public static readonly BindableProperty UsernameTextProperty = BindableProperty.Create(nameof(UsernameText), typeof(string), typeof(TitleViewAccountConventView), string.Empty); public static readonly BindableProperty UserImageProperty = BindableProperty.Create(nameof(UserImage), typeof(ImageSource), typeof(TitleViewAccountConventView), null); + + public static readonly BindableProperty IsSyncingProperty = BindableProperty.Create(nameof(IsSyncing), typeof(bool), typeof(TitleViewAccountConventView), false); + public static readonly BindableProperty IsSyncingTextProperty = BindableProperty.Create(nameof(IsSyncingText), typeof(string), typeof(TitleViewAccountConventView), string.Empty); #endregion @@ -21,6 +24,16 @@ public ImageSource UserImage get => (ImageSource)GetValue(UserImageProperty); set => SetValue(UserImageProperty, value); } + public bool IsSyncing + { + get => (bool)GetValue(IsSyncingProperty); + set => SetValue(IsSyncingProperty, value); + } + public string IsSyncingText + { + get => (string)GetValue(IsSyncingTextProperty); + set => SetValue(IsSyncingTextProperty, value); + } #endregion diff --git a/src/SharedMauiXamlStylesLibrary/Resources/Themes/Controls/ActivityIndicator.xaml b/src/SharedMauiXamlStylesLibrary/Resources/Themes/Controls/ActivityIndicator.xaml index 8e46a040..4f652a0f 100644 --- a/src/SharedMauiXamlStylesLibrary/Resources/Themes/Controls/ActivityIndicator.xaml +++ b/src/SharedMauiXamlStylesLibrary/Resources/Themes/Controls/ActivityIndicator.xaml @@ -15,4 +15,8 @@ + \ No newline at end of file