nativeScript-timedatepicker
提供原生 Android 时间和日期选择器的 NativeScript 模块
npm i --save nativescript-timedatepicker

nativeScript-timedatepicker

提供原生日期和时间选择器的 NativeScript 插件,支持 Android 和 iOS。

##Android 方面 alt tag ##iOS 方面 alt tag

使用方法


//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();

更多使用示例请参阅演示 main-view-model.ts

##iOS 本地化

如果要将按钮设置为非英文语言,您需要在 Xcode 项目中添加该语言。

alt tag

##致谢 此插件抽象了两个原生库,因此以下是对项目和创作者应有的荣誉。

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