animated_shapes 0.0.1
animated_shapes: ^0.0.1 copied to clipboard
Animated geometric shapes in Flutter - Give any offset and the shape will animate to that position from current position
example/lib/main.dart
import 'package:example/learn_screen/learn_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Shapes App',
theme: ThemeData(
scaffoldBackgroundColor: const Color(0xFFF0F0F0),
),
home: SafeArea(child: const LearnScreen()),
);
}
}