npm i --save nativescript-textdrawable
- 版本:1.0.2
- GitHub: https://github.com/triniwiz/nativescript-textdrawable
- NPM: https://npmjs.net.cn/package/nativescript-textdrawable
- 下载
- 昨日: 1
- 上周: 1
- 上个月: 16
#安装 tns plugin add nativescript-textdrawable
##使用方法
import {TextDrawable} from 'nativescript-textdrawable'
var image = new TextDrawable();
要显示的文本
image.text = 'O'
文本颜色
image.textColor = 'white' //颜色可以使用十六进制 || 短十六进制 || 名称 || arbg 设置
字体大小
image.fontSize = 75
图像宽度
image.width = 100
图像高度
image.height = 100
边框
image.withBorder = 5
大写
image.toUpperCase = true
背景颜色
image.bgColor = red //颜色可以使用十六进制 || 短十六进制 || 名称 || arbg ... 如果未设置,则使用随机颜色
粗体
image.bold = true
类型 / 形状
矩形 image.type = 'rect'
圆形 image.type = 'round'
圆角矩形
image.type = 'roundRect'
image.radius = 30 //默认 10
###XML 标记设置
重要:请确保在页面元素中包含 xmlns:td="nativescript-textdrawable"
例如 <td:TextDrawable width="75" height="75" text="of" textColor="white" toUpperCase="true" withBorder="1" type="round" bgColor="#2196F3"/>
##截图