Unable to use sfPicker and sfRadioButton on the same page

I'm trying to use both elements on the same page but I can't reference them on xaml. An error message says it's duplicated.
They need these references:

            xmlns:syncfusion="clr-namespace:Syncfusion.XForms.Buttons;assembly=Syncfusion.Buttons.XForms"
            xmlns:syncfusion="clr-namespace:Syncfusion.SfPicker.XForms;assembly=Syncfusion.SfPicker.Xforms"

How could I put both of them or even more elements on the same xaml page?

1 Reply

PA Paul Anderson S Syncfusion Team July 30, 2018 04:20 AM UTC

Hi Yasmin, 
 
Thank you for using Syncfusion products.  
 
The issue is because you have declared both the controls in the same name “syncfusion”. In the xaml it is not allowed to have the same name for different namespaces. Please make changes as below to solve the reported issue. 
 
 xmlns:syncfusionbuttons="clr-namespace:Syncfusion.XForms.Buttons;assembly=Syncfusion.Buttons.XForms" 
            xmlns:syncfusionpicker="clr-namespace:Syncfusion.SfPicker.XForms;assembly=Syncfusion.SfPicker.Xforms" 
 
 
Regards, 
Paul Anderson 


Loader.
Up arrow icon