本文整理汇总了TypeScript中tns-core-modules/image-source.fromResource函数的典型用法代码示例。如果您正苦于以下问题:TypeScript fromResource函数的具体用法?TypeScript fromResource怎么用?TypeScript fromResource使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了fromResource函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: testFromResource
export function testFromResource() {
// >> imagesource-resname
const img = imageSource.fromResource("icon");
// << imagesource-resname
TKUnit.assert(img.height > 0, "image.fromResource failed");
}
示例2: updateIndicatorArrow
private updateIndicatorArrow(group) {
if (applicationModule.ios) {
var redColor = (new Color("Green")).ios;
var newFill = TKSolidFill.solidFillWithColor(redColor);
group.titleView.indicatorView.fillColor = newFill;
} else {
var img = imageSourceModule.fromResource("ic_custom_arrow").android;
group.expandButton().setImageBitmap(img);
}
}
示例3: updateIndicatorArrow
private updateIndicatorArrow(group) {
if (ios) {
const redColor = (new Color("Green")).ios;
const newFill = TKSolidFill.solidFillWithColor(redColor);
group.titleView.indicatorView.fillColor = newFill;
} else {
const img = fromResource("ic_custom_arrow").android;
group.expandButton().setImageBitmap(img);
}
}
开发者ID:telerik,项目名称:nativescript-ui-samples-angular,代码行数:10,代码来源:dataform-platform-specifics.component.ts