Posts

Showing posts with the label #triks

Tips and Tricks in Xamarin Forms

 Hi Developer, I hope all you are fine. Lets start with tips and tricks for xamarin form which will be useful for you. For better understand please watch video . RefreshView The Refreshview  is a container control that provides pull to refresh functionality for scrollable content.  This control will work if you have use scrollview. sometime we use only listview or collectionview which does not required scrollview, if we use scrollview the it will show space at the bottom of the page.so simply write below code: <RefreshView x:Name="refreshView" Refreshing="refreshView_Refreshing"> <ScrollView x:Name="MainScroll"> <ContentView HeightRequest="{Binding Source={x:Reference MainScroll},Path=Height}"> <!---- Your UI Design--> </ContentView> </ScrollView> </RefreshView> Activity Indicator Refreshview show loader on top of the pa