gitextract_g3b5j93u/ ├── .gitignore ├── FormsToolkit/ │ ├── FormsToolkit/ │ │ ├── Behaviors/ │ │ │ ├── EmailValidatorBehavior.cs │ │ │ └── EmptyValidatorBehavior.cs │ │ ├── Class1.cs │ │ ├── Controls/ │ │ │ ├── EntryLine.cs │ │ │ └── ListViewGrouped.cs │ │ ├── Converters/ │ │ │ ├── BooleanToObjectConverter.cs │ │ │ ├── HasDataConverter.cs │ │ │ ├── HexToColorConverter.cs │ │ │ ├── InvertedBooleanConverter.cs │ │ │ ├── LowerTextConverter.cs │ │ │ └── UpperTextConverter.cs │ │ ├── FormsToolkit.csproj │ │ ├── Interfaces/ │ │ │ └── IMessagingService.cs │ │ ├── Pages/ │ │ │ └── NavigationPageNoLine.cs │ │ └── Services/ │ │ ├── MessagingService.cs │ │ ├── MessagingServiceAlert.cs │ │ ├── MessagingServiceChoice.cs │ │ └── MessagingServiceQuestion.cs │ ├── FormsToolkit.Android/ │ │ ├── FormsToolkit.Android.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ └── Resource.Designer.cs │ │ ├── Toolkit.cs │ │ └── packages.config │ ├── FormsToolkit.Shared/ │ │ ├── AssemblyInfoGlobal.cs │ │ ├── FormsToolkit.Shared.projitems │ │ └── FormsToolkit.Shared.shproj │ └── FormsToolkit.iOS/ │ ├── Cells/ │ │ ├── CellHelpers.cs │ │ ├── StandardImageCellRenderer.cs │ │ ├── StandardTextCellRenderer.cs │ │ └── StandardViewCellRenderer.cs │ ├── Controls/ │ │ ├── EntryLineRenderer.cs │ │ └── ListViewGroupedRenderer.cs │ ├── FormsToolkit.iOS.csproj │ ├── Pages/ │ │ └── NavigationPageNoLineRenderer.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Toolkit.cs │ └── packages.config ├── FormsToolkit.nuspec ├── FormsToolkit.sln ├── LICENSE.md ├── README.md ├── ToolkitTests/ │ ├── Droid/ │ │ ├── Assets/ │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties/ │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ └── Resource.designer.cs │ │ ├── ToolkitTests.Droid.csproj │ │ └── packages.config │ ├── ToolkitTests/ │ │ ├── Pages/ │ │ │ └── MessagingServicePage.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── ToolkitTests.cs │ │ ├── ToolkitTests.csproj │ │ └── packages.config │ └── iOS/ │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Resources/ │ │ ├── Images.xcassets/ │ │ │ └── AppIcons.appiconset/ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ ├── ToolkitTests.iOS.csproj │ └── packages.config ├── appveyor.yml ├── build.cake ├── build.ps1 ├── cake.packages.config ├── install-android-sdk.ps1 └── readme.txt