v1.0.1hash_at_links_detector
哈希@連結檢測器 自訂文字以檢測'#'_ '@'_ '連結' 支援多種語言
21喜歡 39近 30 天下載70Pub 分數
平台暫無資料
哈希@連結檢測器 自訂文字以檢測'#'_ '@'_ '連結' 支援多種語言
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
You can use CustomSmartText to detect # @ links text.
CustomSmartText(
text:
"@flutter test @hatem ragap #flutter #Dart \n https://pub.dev \n hi hello \n h hello \n s #فلاتر\n @حاتم",
atStyle: TextStyle(color: Colors.red),
disableAt: false,
onTagClick: (tag) {
if (tag == "Dart") {
print("Dart is $tag");
} else {
print("tag is $tag");
}
},
onUrlClicked: (open) {
// launch url
print("opened $open");
},
onAtClick: (at) {
print("at is $at");
},
),