pranavo72bex / readmore

A Flutter plugin than allow expand and collapse text dynamically

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

readmore

A Flutter plugin than allow expand and collapse text.

usage:

add to your pubspec

readmore: ^2.2.1

and import:

import 'package:readmore/readmore.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,
  collapsed: true,
  colorClickableText: Colors.pink,
  trimMode: TrimMode.Line,
  trimCollapsedText: 'Show more',
  trimExpandedText: 'Show less',
  moreStyle: TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
  withDelimiter: true,
);

About

A Flutter plugin than allow expand and collapse text dynamically

License:MIT License


Languages

Language:Dart 97.1%Language:Swift 2.0%Language:Kotlin 0.6%Language:Objective-C 0.2%