Skip to content

mustafacagataytulun/nativescript-timedatepicker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

nativescript-timedatepicker

A NativeScript plugin providing native date and time pickers for Android and iOS.

##Android side alt tag ##iOS side alt tag

Usage

//Import the plugin
import * as TimeDatePicker from 'nativescript-timedatepicker';

//Create a callback function
let mCallback =  ((result) => {
  if (result) {
    alert("the time is "+result);
  }
});

//Initialize the PickerManager (.init(yourCallback, title, initialDate))
TimeDatePicker.init(mCallback,null,null);

//Show the dialog
TimeDatePicker.showDatePickerDialog();

For more examples of usage see the demo main-view-model.ts.

##IOS localization

If you want the buttons to be on some other language than english you have to add that language to your project on xcode.

alt tag

##Credits This plugin abstract two native libraries, hence here are the project and deserved merit to the creators.

For iOS https://github.com/hackiftekhar/IQActionSheetPickerView
For Android https://github.com/CiTuX/datetimepicker

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.6%
  • Ruby 0.4%