nativescript-bored-rudolph
NativeScript 插件,用于在下拉刷新布局中实现自定义的隐藏游戏。
npm i --save nativescript-bored-rudolph

npm npm

NativeScript-Bored-Rudolph :recycle

NativeScript 插件,用于在下拉刷新布局中实现自定义游戏。

演示

Demo

原生库

无聊的鲁道夫

安装

在您的命令提示符/终端中,转到您的应用程序根目录并执行

tns plugin add nativescript-bored-rudolph

使用方法

XML

<page 
xmlns="http://schemas.nativescript.org/tns.xsd"
xmlns:BR="nativescript-bored-rudolph" loaded="pageLoaded">
<ActionBar title="Bored Rudolph" backgroundColor="#BF4066" color="#fff" />
<stack-layout>
<BR:BoredRudolph refresh="{{ stopRefresh }}" id="rudolph">
<list-view items="{{ users }}">
<list-view.itemTemplate>
<label text="{{ name }}" row="0" col="1" textWrap="true" class="message" />
</list-view.itemTemplate>
</list-view>
</BR:BoredRudolph>
</stack-layout>
</page>

TS


public stopRefresh(args: any) {
// Load more data here and then set 'refreshing = false' to end the refresh
let boredRudolph: BoredRudolph = args.object;
boredRudolph.refreshing = false;
}

属性

refresh : function 可选 - 当您将 BoredRudoplh 的 refresh 属性设置为 false 时,会触发此事件。

API

refreshing

属性。通知小部件刷新状态已更改。