https://github.com/ztomz/typo_tweaker
A Flutter package for text animations.
https://github.com/ztomz/typo_tweaker
dart flutter package
Last synced: 3 months ago
JSON representation
A Flutter package for text animations.
- Host: GitHub
- URL: https://github.com/ztomz/typo_tweaker
- Owner: zTomz
- License: mit
- Created: 2024-01-01T12:41:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T13:57:43.000Z (over 2 years ago)
- Last Synced: 2025-03-04T12:35:14.939Z (over 1 year ago)
- Topics: dart, flutter, package
- Language: Dart
- Homepage: https://pub.dev/packages/typo_tweaker
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# TypoTweaker 🚀
Welcome to TypoTweaker - the ultimate flutter package for impressive text animations! 💬✨
## What is TypoTweaker?
TypoTweaker is a powerful flutter package that allows you to take your texts to a whole new level. 🌟 With a wealth of animated effects and effortless integration, you can bring your app to life with captivating text animations.
## Features 🎉
- Diverse animations: Choose from a wide range of animated effects to personalize your text and make it stand out.
- Easy integration: TypoTweaker is designed to integrate seamlessly into your Flutter application. A few lines of code are all it takes to create stunning text animations.
- Customization options: Customize the animations to your needs. Control speed, direction and many other parameters for maximum flexibility.
## Installation 🚚
Add TypoTweaker to your Flutter project by adding the following line to your pubspec.yaml file:
```yaml
dependencies:
typo_tweaker: ^0.0.2
```
Then install the packages with:
```bash
flutter pub get
```
## Example code 🧑💻
```dart
import 'package:typo_tweaker/typo_tweaker.dart';
```
```dart
void main() {
runApp(
MaterialApp(
home: Scaffold(
body: Center(
child: TypoTweaker(
text: 'Hello, TypoTweaker!',
animationDuration: Duration(seconds: 2),
animationType: TypoAnimationType.hacker,
),
),
),
),
);
}
```
## Contribute 💪
We welcome contributions and feedback! If you have suggestions for improvements or bug reports, simply create an issue or a pull request on GitHub.
## License 📝
TypoTweaker is licensed under the MIT license. See the [license file](LICENSE) for more details.