Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/masreplay/readmore


https://github.com/masreplay/readmore

Last synced: 21 days ago
JSON representation

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),
);
```