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

BasicAnimatedText is a custom Flutter widget designed to create an animated text effect where the text appears and then deletes itself character by character.

example/example.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: BasicAnimatedText(text: 'Hello, world!'),
        ),
      ),
    );
  }
}
0
likes
130
pub points
0%
popularity

Publisher

verified publisheraltaysakarya.dev

BasicAnimatedText is a custom Flutter widget designed to create an animated text effect where the text appears and then deletes itself character by character.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on basic_animated_text