decoding_text_effect 1.1.1 copy "decoding_text_effect: ^1.1.1" to clipboard
decoding_text_effect: ^1.1.1 copied to clipboard

A Flutter package for DecodingTextEffect widget. There are 5 Decode Effects that you can choose from.


This flutter package contains a widget called DecodingTextEffect which is having some cool Decode Effects for texts.


Installing #

1. Depend on it #

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

dependencies:
  decoding_text_effect: ^1.0.0
copied to clipboard

2. Install it #

You can install packages from the command line:

$ flutter pub get
copied to clipboard

3. Import it #

Now in your Dart code, you can use:

import 'package:decoding_text_effect/decoding_text_effect.dart';
copied to clipboard

Documentation #

Decoding effects occurs only for following two cases,

  1. When the widget is rendered for the very first time.
  2. When the value of originalString parameter gets changed.
DecodingTextEffect(
   this.originalString, {
   @required this.decodeEffect,
   Key key,
   this.textStyle,
   this.textAlign,
   this.refreshDuration,
   this.eachCount = 5,
   this.onTap,
   this.onFinished,
  })  : assert(
         originalString != null,
         'A non-null String must be provided to a Decoding Text Effect Widget.',
        ),
        super(key: key);
copied to clipboard

Usage #

List<String> myText = [
   'Decoding Text\nEffect',
   'Welcome to\nthe Dart Side!',
   'I have 50\nwatermelons',
   'Quick Maths,\n2 + 2 = 4'
  ];
copied to clipboard

1. DecodeEffect.fromStart #

Container(
   height: 200,
   width: 350,
   color: Colors.pink[100],
   padding: EdgeInsets.all(50),
   child: DecodingTextEffect(
      myText[index],
      decodeEffect: DecodeEffect.fromStart,
      textStyle: TextStyle(fontSize: 30),
   ),
),
copied to clipboard

2. DecodeEffect.fromEnd #

Container(
   height: 200,
   width: 350,
   color: Colors.yellow[100],
   padding: EdgeInsets.all(50),
   child: DecodingTextEffect(
      myText[index],
      decodeEffect: DecodeEffect.fromEnd,
      textStyle: TextStyle(fontSize: 30),
   ),
),
copied to clipboard

3. DecodeEffect.toMiddle #

Container(
   height: 200,
   width: 350,
   color: Colors.green[100],
   padding: EdgeInsets.all(50),
   child: DecodingTextEffect(
      myText[index],
      decodeEffect: DecodeEffect.to_middle,
      textStyle: TextStyle(fontSize: 30),
   ),
),
copied to clipboard

4. DecodeEffect.random #

Container(
   height: 200,
   width: 350,
   color: Colors.purple[100],
   padding: EdgeInsets.all(50),
   child: DecodingTextEffect(
      myText[index],
      decodeEffect: DecodeEffect.random,
      textStyle: TextStyle(fontSize: 30),
   ),
),
copied to clipboard

5. DecodeEffect.all #

Container(
   height: 200,
   width: 350,
   color: Colors.blue[100],
   padding: EdgeInsets.all(50),
   child: DecodingTextEffect(
      myText[index],
      decodeEffect: DecodeEffect.all,
      textStyle: TextStyle(fontSize: 30),
   ),
),
copied to clipboard

refreshDuration and eachCount #

The refreshDuration is an optional argument that is having a default value of Duration(milliseconds: 60). Shorter the value of refreshDuration, faster will be the effect and hence decreasing the duration of effect. refreshDuration is also the time gap between two consecutive setState() function calls.

The eachCount is also an optional argument that is having a default value of 5. It is the number of random characters that will be shown before showing the original character and then moving on to decode next character and this cycles repeat until the completion of effect.

Demo #

Source code of the below app is available in the example directory of this package's github repository.

Below are some other demonstration of DecoratingTextEffect widget. But the source code of below apps are not in this repository.

31
likes
40
points
42
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.16 - 2025.03.31

A Flutter package for DecodingTextEffect widget. There are 5 Decode Effects that you can choose from.

Repository (GitHub)

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on decoding_text_effect