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
Implement the aforementioned scaffolding code. (using Syncfusion.Maui.NavigationDrawer nuget package, and a trial or development license key): getting started with SfNavigationDrawer
Add the new SfNavigationDrawer to a page. i.e.: new Components.SfNavigationDrawer().DrawerSettings(new DrawerSettings() { Position = Position.Right, DrawerWidth = 300 })
When .IsOpen(true) is added to the component, the application fails to start and I see the exception: "Value cannot be null. (Parameter 'animatable')"
Expected behavior
The navigation drawer must open because IsOpen is set to true.
Desktop (please complete the following information):
OS: Windows 11
Browser: N.A.
Version:
Edition Windows 11 Home
Version 24H2
Installed on 14/12/2024
OS build 26100.3194
Experience Windows Feature Experience Pack 1000.26100.48.0
Additional context
I am not sure if this is an error in the source generator such that field isnt set, or that I miss a bit of scaffolding. If there is a way to disable animating this component, if that solves the issue I will be more than happy with that.
The text was updated successfully, but these errors were encountered:
Hi,
There's nothing wrong with your code, it's just missing the DrawerSettings part.
I know it's challenging to create wrappers for complex controls so I've made a repository full of implementations for the most famous third-party controls available for .NET MAUI.
Describe the bug
I am trying to implement the third party SfnavigationDrawer component;
The following scafflowing is required:
To Reproduce
Steps to reproduce the behavior:
new Components.SfNavigationDrawer().DrawerSettings(new DrawerSettings() { Position = Position.Right, DrawerWidth = 300 })
.IsOpen(true)
is added to the component, the application fails to start and I see the exception:"Value cannot be null. (Parameter 'animatable')"
Expected behavior
The navigation drawer must open because IsOpen is set to true.
Desktop (please complete the following information):
Edition Windows 11 Home
Version 24H2
Installed on 14/12/2024
OS build 26100.3194
Experience Windows Feature Experience Pack 1000.26100.48.0
Additional context
I am not sure if this is an error in the source generator such that field isnt set, or that I miss a bit of scaffolding. If there is a way to disable animating this component, if that solves the issue I will be more than happy with that.
The text was updated successfully, but these errors were encountered: