flutter_steps_animation 1.1.0 flutter_steps_animation: ^1.1.0 copied to clipboard
A powerful Flutter package for building complex animation step by step.
import 'package:flutter/material.dart';
import 'animation_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: AnimationPage(),
);
}
}