v0.0.9linkify_text
LinkifyText는 텍스트 내의 모든 링크를 강조 표시하는 Text 위젯입니다. 하이퍼링크를 탭하면 브라우저를 사용하여 사용자를 해당 링크로 이동시킵니다.
22좋아요 11130일 다운로드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