All Projects → alexsorokoletov → Xamarin.iOS.DatePickerDialog

alexsorokoletov / Xamarin.iOS.DatePickerDialog

Licence: MIT license
Xamarin iOS C# port of https://github.com/squimer/DatePickerDialog-iOS-Swift

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Xamarin.iOS.DatePickerDialog

32feet
Personal Area Networking for .NET
Stars: ✭ 395 (+1545.83%)
Mutual labels:  xamarin, nuget, xamarin-ios
VersionTrackingPlugin
Version Tracking Plugin for Xamarin and Windows
Stars: ✭ 62 (+158.33%)
Mutual labels:  xamarin, nuget, xamarin-ios
Plugin.audiorecorder
Audio Recorder plugin for Xamarin and Windows
Stars: ✭ 140 (+483.33%)
Mutual labels:  xamarin, nuget, xamarin-ios
fscalendar-ios-binding
Xamarin Binding Library - FSCalendar for iOS https://github.com/WenchaoD/FSCalendar
Stars: ✭ 12 (-50%)
Mutual labels:  xamarin, bindings, xamarin-ios
Xamarin.iOS.DGActivityIndicatorView
🔰 DGActivityIndicatorView is a collection of nice loading animations for Xamarin.iOS.
Stars: ✭ 28 (+16.67%)
Mutual labels:  xamarin, nuget, xamarin-ios
CreatingPlatformPlugins
A set of examples and documentation to aid in the development of cross-platform libraries and plugins.
Stars: ✭ 48 (+100%)
Mutual labels:  xamarin, nuget
PastelXamarinIos
🌒 Gradient animations on Xamarin-iOS
Stars: ✭ 17 (-29.17%)
Mutual labels:  xamarin, xamarin-ios
DarkModeSplashScreen
A sample app for iOS and Android written in Xamarin.Forms showing how to implement a Splash Page for Dark Mode
Stars: ✭ 28 (+16.67%)
Mutual labels:  xamarin, xamarin-ios
bottomnavigationviewex-android-binding
Xamarin.Android Binding Library for Ittianyu BottomNavigationViewEx
Stars: ✭ 25 (+4.17%)
Mutual labels:  xamarin, bindings
Xamarin.AzureCommunicationCalling
Xamarin iOS and Android binding libraries for Microsofts Azure Communication Services
Stars: ✭ 32 (+33.33%)
Mutual labels:  xamarin, nuget
vs-material-icons-generator
This plugin will help you to set material design icons to your Xamarin projects In Visual Studio.
Stars: ✭ 50 (+108.33%)
Mutual labels:  xamarin, xamarin-ios
ScreenshotPlugin
A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.
Stars: ✭ 32 (+33.33%)
Mutual labels:  xamarin, nuget
XamarinIoTWorkshop
A workshop that demonstrates how to collect IoT data from a mobile device using a Xamarin app, aggregating the data to the cloud using Azure IoT Hub
Stars: ✭ 13 (-45.83%)
Mutual labels:  xamarin, xamarin-ios
XamarinClipboardPlugin
Cross Platform Clipboard access for Xamarin
Stars: ✭ 24 (+0%)
Mutual labels:  xamarin, xamarin-ios
XamUI
Xamarin UI Challenges 🏆
Stars: ✭ 57 (+137.5%)
Mutual labels:  xamarin, xamarin-ios
Xamarin.MediaGallery
This plugin is designed to picking and save images and video files from native gallery of Android and iOS devices and capture photos
Stars: ✭ 106 (+341.67%)
Mutual labels:  xamarin, xamarin-ios
InvestmentDataSampleApp
This app utilizes a SQLite databse, MVVM, along with these Xamarin.Forms controls: Search Bar, Picker, Grid, StackLayout, Navigation Page, ListView, ViewCell. It also shows how to tweak the UI to best appear on larger tablet screens.
Stars: ✭ 56 (+133.33%)
Mutual labels:  xamarin, xamarin-ios
Extended-Toolkit
A companion toolkit for the standard toolkit.
Stars: ✭ 83 (+245.83%)
Mutual labels:  nuget, controls
DevOpsExamples
A repo to show you how to use a private NuGet feed, such as Telerik, to restore packages in Azure DevOps, GitHub Actions, GitLab CI and AppCenter.
Stars: ✭ 16 (-33.33%)
Mutual labels:  xamarin, nuget
WeakEventListener
The WeakEventListener allows the owner to be garbage collected if its only remaining link is an event handler.
Stars: ✭ 25 (+4.17%)
Mutual labels:  xamarin, xamarin-ios

Xamarin.iOS.DatePickerDialog

NuGet Badge

Xamarin iOS C# port of https://github.com/squimer/DatePickerDialog-iOS-Swift

How to use

Install Nuget Install-Package Xamarin.iOS.DatePickerDialog

var startingTime = DateTime.Now;
var dialog = new DatePickerDialog();
dialog.Show("Choose time", "Done", "Cancel", UIDatePickerMode.Time, (dt) =>
{
  TimePickLabel.Text = dt.ToString();
}, startingTime);

There are 3 modes supported:

UIDatePickerMode.Time UIDatePickerMode.Date UIDatePickerMode.DateAndTime

Xamarin iOS C# port of https://github.com/squimer/DatePickerDialog-iOS-Swift demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].