From d1c770b568b37f174b49d2d01301bc9a251b2c68 Mon Sep 17 00:00:00 2001 From: Anandh Ganesan Date: Thu, 28 Aug 2025 10:29:46 +0530 Subject: [PATCH 1/3] Updated README.md file --- README.md | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/README.md b/README.md index 7c75dfb..13d1288 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,82 @@ # How to apply fading edge effect (shadow) for listview item in Xamarin.Forms? This example demonstrates how to apply fading edge effect for the listview item in Xamarin.Forms. +## Sample + +```xaml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ViewModel.cs: +public ObservableCollection ContactsInfo +{ + get { return contactsInfo; } + set { this.contactsInfo = value; } +} + +public void GenerateSource(int count) +{ + ListViewContactsInfoRepository contactRepository = new ListViewContactsInfoRepository(); + contactsInfo = contactRepository.GetContactDetails(count); +} +``` + See [How to apply fading edge effect (shadow) for listview item in Xamarin.Forms](https://www.syncfusion.com/kb/9489/how-to-apply-fading-edge-effect-shadow-for-listview-item-in-xamarin-forms) for more details. ## Requirements to run the demo ## From ac734c6358f30314de099642dd873789d70a4c4c Mon Sep 17 00:00:00 2001 From: Anandh-SF4665 <169978529+Anandh-SF4665@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:34:33 +0530 Subject: [PATCH 2/3] Update README.md --- README.md | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 13d1288..5dfc653 100644 --- a/README.md +++ b/README.md @@ -37,24 +37,8 @@ This example demonstrates how to apply fading edge effect for the listview item TextColor="Teal"> - - + . . . + . . . From ec88c22e5017191d66482bdcdf25462c54375f22 Mon Sep 17 00:00:00 2001 From: PiruthivirajM <44426156+PiruthivirajM@users.noreply.github.com> Date: Mon, 1 Sep 2025 12:13:55 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 5dfc653..5d6b7eb 100644 --- a/README.md +++ b/README.md @@ -46,19 +46,6 @@ This example demonstrates how to apply fading edge effect for the listview item - -ViewModel.cs: -public ObservableCollection ContactsInfo -{ - get { return contactsInfo; } - set { this.contactsInfo = value; } -} - -public void GenerateSource(int count) -{ - ListViewContactsInfoRepository contactRepository = new ListViewContactsInfoRepository(); - contactsInfo = contactRepository.GetContactDetails(count); -} ``` See [How to apply fading edge effect (shadow) for listview item in Xamarin.Forms](https://www.syncfusion.com/kb/9489/how-to-apply-fading-edge-effect-shadow-for-listview-item-in-xamarin-forms) for more details.