v0.0.9linkify_text
LinkifyText 是一個 Text 小部件,可強調文字中的所有連結。點擊強調的連結時,會使用瀏覽器導航使用者至該連結。
22喜歡 111近 30 天下載135Pub 分數
AndroidiOSWebmacOSWindowsLinux
Flutter 中的 LinkifyText 小工具
{"sdk":"flutter"}^6.0.12{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
LinkifyText Widget allows to highlight links in Text. It further allow navigation, link opening on browser, on tapping highlighted link.
import 'package:flutter/material.dart';
import 'package:linkify_text/linkify_text.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(child:
LinkifyText(
//String literal that may contain link
"Please visit google.com",
//color for all non link text
fontColor: Colors.black,
//color to highlight link
linkColor: Colors.blue,
//font size
fontSize: 20,
//font weight of the text
fontWeight: FontWeight.w500,
//font family of the text
fontFamily: "Roboto",
//To enable navigation on tapping on highlighted link
isLinkNavigationEnable: true,
),
),
);
}
}
Screenshot_1582176175