pretty_animated_text 0.0.1 copy "pretty_animated_text: ^0.0.1" to clipboard
pretty_animated_text: ^0.0.1 copied to clipboard

Pretty animated text plugin for flutter

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:pretty_animated_text/pretty_animated_text.dart';

void main() {
  runApp(const ChimeBellDemo());
}

class ChimeBellDemo extends StatelessWidget {
  const ChimeBellDemo({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: ChimeBellText(
            text: 'Hello Pretty Chimebell Effect!',
          ),
        ),
      ),
    );
  }
}