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

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

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animated_shapes