Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masreplay/readmore
https://github.com/masreplay/readmore
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/masreplay/readmore
- Owner: masreplay
- License: mit
- Created: 2023-11-18T16:24:47.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-18T16:46:12.000Z (12 months ago)
- Last Synced: 2023-11-19T17:53:01.738Z (12 months ago)
- Language: C++
- Size: 709 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# readmore
A Flutter plugin that allows to expansion and collapse of text.
# Support flutter 3
![](read-more-text-view-flutter.gif)## usage:
add to your pubspec```
readmore:
```
and import:
```
import 'package:readmore/readmore.dart';
``````dart
ReadMoreText(
'Flutter is Google’s mobile UI open source framework to build high-quality native (super fast) interfaces for iOS and Android apps with the unified codebase.',
trimLines: 2,
colorClickableText: Colors.pink,
trimMode: TrimMode.line,
trimCollapsedText: 'Show more',
trimExpandedText: 'Show less',
moreStyle: TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
);
```