overflow_text_animated 0.0.6 copy "overflow_text_animated: ^0.0.6" to clipboard
overflow_text_animated: ^0.0.6 copied to clipboard

A Flutter package project that handles text overflow with animation.

A plugin that displays overflowed text in a different way:

Installing #

1. Depend on it #

Add this to your package's pubspec.yaml file:

dependencies:
  overflow_text_animated: ^0.0.6

2. Install it #

You can install packages from the command line:

with pub:

$ pub get

with Flutter:

$ flutter pub get

3. Import it #

Now in your Dart code, you can use:

import 'package:overflow_text_animated/overflow_text_animated.dart';

Usage #

OverflowTextAnimated is a Stateful Widget. Include it in your build method like:

OverflowTextAnimated(
  text: overflowText,
  style: descriptionStyle,
  curve: Curves.fastEaseInToSlowEaseOut,
  animation: OverFlowTextAnimations.scrollOpposite,
  animateDuration: Duration(milliseconds: 1500),
  delay: Duration(milliseconds: 500),
)

OverflowTextAnimated is used as default text widget. It has many configurable properties, including:

  • text - required properties
  • style – style of text
  • curve – motion curves of animation effects
  • animation - animation type
  • animateDuration – is the duration of the animation
  • delay – is the break time between 2 animations

Note: Widget is only available when its parent has a specified width.

28
likes
160
pub points
82%
popularity

Publisher

unverified uploader

A Flutter package project that handles text overflow with animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on overflow_text_animated