Hi Bryson Scales,
We would like to inform you that you can disable the ripple effect when tapping on the SfAccordion header by utilizing theme keys. The solution is to set the ripple background to Transparent through the Syncfusion theme dictionary.
By setting the SfAccordionHeaderRippleBackground to Transparent, the visual ripple effect that appears when users tap on the accordion header will be effectively disabled.
We have attached a code snippet and a sample for your reference:
<ContentPage.Resources> <syncTheme:SyncfusionThemeDictionary> <syncTheme:SyncfusionThemeDictionary.MergedDictionaries> <ResourceDictionary> <x:String x:Key="SfAccordionTheme">CustomTheme</x:String> <Color x:Key="SfAccordionHeaderRippleBackground">Transparent</Color> </ResourceDictionary> </syncTheme:SyncfusionThemeDictionary.MergedDictionaries> </syncTheme:SyncfusionThemeDictionary> </ContentPage.Resources>
<accordion:SfAccordion> ... </accordion:SfAccordion> |
Regards,
Riyas Hameed M