animated_shapes 0.0.3 copy "animated_shapes: ^0.0.3" to clipboard
animated_shapes: ^0.0.3 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()),
    );
  }
}
2
likes
140
points
42
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

Animated geometric shapes in Flutter - Give any offset and the shape will animate to that position from current position

Repository (GitHub)
View/report issues

Topics

#animation #shapes

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

flutter

More

Packages that depend on animated_shapes