use_scramble 0.0.10
use_scramble: ^0.0.10 copied to clipboard
Lightweight package for random text animations inspired by useScramble
0.0.10 #
- Refactored the
TextScramblewidget:- Removed the
styleandtextAlignproperties. - Added a required
builder: (BuildContext, String) => Widgetproperty. This allows users to define their own rendering logic for the displayed text, providing greater flexibility in customizing its appearance. Text styling and alignment should now be implemented within thebuilderfunction.
- Removed the
0.0.9 #
- Add "Used by" section
0.0.8 #
- Update example
- Update documentation
0.0.7 #
- Add
textAlignparameter
TextScramble(
text: 'Hello World!',
speed: Duration(milliseconds: 50),
chars: '!<>-_\\/[]{}—=+*^?#________',
correctCharProbability: 0.1, // Correct character probability in [0, 1]
scrambleCycles: 4, // Number of times to scramble the text
textAlign: TextAlign.center, // Optional text alignment
style: TextStyle(
fontSize: 40,
color: Colors.green,
fontFamily: 'JetBrainsMono',
),
),
0.0.6 #
- Add support options
0.0.5 #
- Update example
0.0.4 #
- Add
correctCharProbabilityandscrambleCyclesparameters
0.0.3 #
- Add Medium article
0.0.2 #
- Update example
- Add codacy badge
0.0.1 #
- Initial release