This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Windows.Input; | |
| using Xamarin.Forms; | |
| namespace YourNS { | |
| public class ListView : Xamarin.Forms.ListView { | |
| public static BindableProperty ItemClickCommandProperty = BindableProperty.Create<ListView, ICommand>(x => x.ItemClickCommand, null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Xamarin.Forms; | |
| using System.Collections.ObjectModel; | |
| using System.Threading.Tasks; | |
| namespace LoadMoreBottom | |
| { | |
| public class App : Application | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Xamarin.Forms; | |
| //https://developer.xamarin.com/guides/xamarin-forms/user-interface/text/fonts/ | |
| [assembly: ExportRenderer(typeof(Label), typeof(CustomFontLabelRenderer))] | |
| namespace dkudelko.Mobile.Android | |
| { | |
| public class CustomFontLabelRenderer : LabelRenderer | |
| { | |
| private static readonly string[] CustomFontFamily = new [] { "FontAwesome" }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FadeTriggerAction : TriggerAction<VisualElement> | |
| { | |
| public FadeTriggerAction() {} | |
| public int StartsFrom { set; get; } | |
| protected override void Invoke (VisualElement visual) | |
| { | |
| visual.Animate("", new Animation( (d)=>{ | |
| var val = StartsFrom == 0 ? d : 1-d; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Mobile.Droid.Renderers; | |
| using Xamarin.Forms; | |
| using Xamarin.Forms.Platform.Android; | |
| [assembly: ExportRenderer(typeof(Entry), typeof(CustomEntryRenderer_Droid))] | |
| namespace Mobile.Droid.Renderers | |
| { | |
| public class CustomEntryRenderer_Droid : EntryRenderer | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Xamarin.Forms; | |
| using Xamarin.Forms.Platform.iOS; | |
| [assembly: ExportRenderer (typeof(ViewCell), typeof(MyAPP.iOS.CustomAllViewCellRendereriOS))] | |
| namespace MyAPP.iOS | |
| { | |
| public class CustomAllViewCellRendereriOS : ViewCellRenderer | |
| { | |
| public override UIKit.UITableViewCell GetCell (Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Xamarin.Forms.Platform.iOS; | |
| using Xamarin.Forms; | |
| using UIKit; | |
| using System.Diagnostics; | |
| [assembly: ExportRenderer(typeof(SearchBar), typeof(Namespace.iOS.Renderers.ExtendedSearchBarRenderer))] | |
| namespace Namespace.iOS.Renderers | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ScrollView x:Name="scrollView" StyleId="scrollView"> | |
| <StackLayout VerticalOptions="Fill" BackgroundColor="Fuchsia"> | |
| <Image x:Name="photoImage" /> | |
| .... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var enumerator = list.GetEnumerator(); | |
| while (enumerator.MoveNext()) | |
| if (enumerator.Current.Id.Equals(customId)) | |
| { | |
| enumerator.Current.DateModified = DateTime.Now; | |
| //... smght else | |
| } |
OlderNewer