Hello Suganya Sethuraman,
I see some cool things that you have done in the two links that you included.
In the one, if I set the page background to black and the combobox background to white, I get white leaking past the rounded corners of the combobox - which does not happen in the components from other companies. See the code additions below:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="Combo_Hidden.MainPage"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:combobox="clr-namespace:Syncfusion.XForms.ComboBox;assembly=Syncfusion.SfComboBox.XForms"
xmlns:local="clr-namespace:Combo_Hidden"
BackgroundColor="Black"> <!-- add this line-->
<ContentPage.BindingContext>
<local:EmployeeViewModel />
</ContentPage.BindingContext>
<StackLayout Padding="30">
<local:CustomComboBox
x:Name="comboBox"
DataSource="{Binding EmployeeCollection}"
DisplayMemberPath="Name"
HeightRequest="40"
IsEditableMode="True"
BackgroundColor="White"> <!-- add this line-->
<local:CustomComboBox.DropDownButtonSettings>
<combobox:DropDownButtonSettings Width="25" Height="30" />
</local:CustomComboBox.DropDownButtonSettings>
</local:CustomComboBox>
</StackLayout>
</ContentPage>
In the other sample, adding page background color of black and BackgroundColor="White" like this:
<inputLayout:SfTextInputLayout ContainerType="Outlined" Hint="User name" BackgroundColor="White">
also adds white outside the boundary of the combobox so that it does not look like the other components.
Regards,
Will