ElLink constructor
const
ElLink({
- Key? key,
- required String href,
- required dynamic child,
- Color? color,
- Color? activeColor,
- ElLinkDecoration? decoration,
- MouseCursor cursor = SystemMouseCursors.click,
- LinkTarget target = LinkTarget.blank,
超链接小部件,链接跳转基于 url_launcher 第三方库,当鼠标悬停时会在左下角显示链接地址。
Implementation
const ElLink({
super.key,
required this.href,
required this.child,
this.color,
this.activeColor,
this.decoration,
this.cursor = SystemMouseCursors.click,
this.target = LinkTarget.blank,
});