本文共 909 字,大约阅读时间需要 3 分钟。
const Tooltip({ Key? key, required this.message, this.height, this.padding, this.margin, this.verticalOffset, this.preferBelow, this.excludeFromSemantics, this.decoration, this.textStyle, this.waitDuration, this.showDuration, this.child, })
属性 | 说明 | 取值 |
---|---|---|
message | 长按时展示文本内容 | String |
child | 子控件 | Widget |
height | 展现消息的高度 | double |
textStyle | 展现消息的样式 | TextStyle |
waitDuration | 等待时长 | Duration |
showDuration | 展示时长 | Duration |
Tooltip( message: '打印', verticalOffset: 2, waitDuration: Duration(seconds: 5), showDuration: Duration(seconds: 2), padding: EdgeInsets.all(2.0), margin: EdgeInsets.all(5.0), textStyle: TextStyle(color: Colors.blue), decoration: BoxDecoration(color: Colors.red), child: Icon(Icons.print), )
转载地址:http://lfsk.baihongyu.com/