Mindinventory/custom_rich_text
텍스트에 하이라이트 및 링크 참조를 허용하는 사용자 정의 리치 텍스트 패키지입니다.
- Stars
- 17
- Forks
- 0
- 최근 푸시(UTC)
- 2026. 1. 8.
- 프로젝트 상태
- 활성
사용 중인 의존성
의존성 목록 2 개
- flutter
{"sdk":"flutter"} - flutter_test개발 의존성
{"sdk":"flutter"}
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
Custom RichText
CustomRichText is a package that allows highlighting and link reference to the text.
Image Plugin
Key Features
- Highlights email, phone number, web link, custom RegExp, certain sub-strings
- Provides a call back on each highlighted string
- Option for read more, read less and a call back for both
- Allow text styling as per requirement
Note
- If you want to highlight any specific type of text then need to add the following on tap method.
- If any link or email consists the provided sub-string then it will ignore that and will be highlighted as web link or email.
Getting Started
To use this package, add custom_rich_text as a dependency in your pubspec.yaml file.
dependencies:
...
custom_rich_text: any
Now in your Dart code, you can use:
import 'package:custom_rich_text/custom_rich_text.dart';
Usage
Example
CustomRichText(
text: 'MindInventory is first-rate choice of the '
'clients worldwide. With sheer customer satisfaction in mind, we are profoundly '
'dedicated to developing highly intriguing apps that strictly meet the business '
'requirements and catering a wide spectrum of projects. Kickstart Your Digital '
'Journey Today and get all your queries and concerns answered by our business '
'development team. Our email address is sales@mindinventory.com, our website '
'https://www.mindinventory.com and our Contact number is +91-951-229-3490',
caseSensitive: false,
readMoreLessModel: ReadMoreLessModel(
trimLines: 3,
readMoreText: ' read more',
readLessText: ' read less',
readMoreLessStyle: kReadMoreLessStyle,
),
textStyle: kTextStyle,
linkStyle: kLinkStyle,
highlightTermsStyle: kLinkStyle,
onWebLinkTap: (web) async {
await launch(web);
},
onPhoneTap: (phone) async {
await launch('tel:$phone');
},
onEmailTap: (email) async {
await launch('mailto:$email');
},
highlightTerms: [kMindinventory],
onTermTap: (text) async {
await launch('https://www.mindinventory.com/');
},
),
Guideline for contributors
Contribution towards our repository is always welcome, we request contributors to create a pull request to the develop branch only.
Guideline to report an issue/feature request
It would be great for us if the reporter can share the below things to understand the root cause of the issue.
- Library version
- Code snippet
- Logs if applicable
- Device specification like (Manufacturer, OS version, etc)
- Screenshot/video with steps to reproduce the issue
LICENSE!
Custom RichText is MIT-licensed.
Let us know!
We’d be really happy if you send us links to your projects where you use our component. Just send an email to sales@mindinventory.com And do let us know if you have any questions or suggestion regarding our work.