my_animated_text 0.0.2
my_animated_text: ^0.0.2 copied to clipboard
my_animated_text is a Flutter package that provides a collection of customizable animated text widgets, including typewriter, slide, wave, gradient, shimmer, and more, to make your app's text dynamic [...]
import 'package:example/views/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Animated Text Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
debugShowCheckedModeBanner: false,
home: HomeView(),
);
}
}