Kannan Chithambaranathan
Kannan Chithambaranathan
### The feature request Enable Collapse & Expand Option in the repository side panel to minimize the scroll. ### Proposed solution Add Collapse & Expand option ### Additional context _No...
Summary of the changes (in less than 80 chars) * Project Migrated to .NET 6.0 * The Language Version is Updated * Global Using Included * File Scope namespace changed...
Actual Code: ``` [assembly: XmlnsDefinition("http://xamarin.com/schemas/2014/forms", nameof(FontAwesome))] [assembly: XmlnsDefinition("http://xamarin.com/schemas/2014/forms", nameof(FontAwesome), AssemblyName = "FontAwesome.Core")] ``` Expected Behavior: `` Actual Behavior: ``` xmlns:fontAwesome="clr-namespace:FontAwesome;assembly=FontAwesome.Core" ``` Why? I want access my controls without adding namespace...
### Overview To simplify the Observable Property attribute required for all properties inside the class. Current Usage: ``` public partial class AddContact : ObservableObject { [ObservableProperty] private Guid id; [ObservableProperty]...
My xaml markup code is (code have the behavior) ``` ... ... ``` IsVisibleAnimBehavior behavior is responsible for triggering the animation whenever the visibility changes. When app runs, I got...
Overriding Property option will be nicer. ``` [AutoBindable(OnChanged = nameof(OnBackgroundColorChanged))] private Color backgroundColor; ``` to support, ``` [AutoBindable(OnChanged = nameof(OnBackgroundColorChanged))] private new Color backgroundColor; ``` It will helps me to...
Missing Adobe XD icon file. I need to integrate design/prototypes inside my project, it helps to speed access.
Hi I am looking for the USDZ file loading using Blazor3D
Current Usage: ``` public partial class AddContact : ObservableObject { [ObservableProperty] private Guid id; [ObservableProperty] private string firstName; [ObservableProperty] private string lastName; [ObservableProperty] private Phone phone; [ObservableProperty] private DateTime? expiry;...