animated_cursor 1.0.5 copy "animated_cursor: ^1.0.5" to clipboard
animated_cursor: ^1.0.5 copied to clipboard

Animated Cursor designed to enhance user interface interactions

example/lib/main.dart

import 'package:animated_cursor/animated_cursor.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(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.red,
      ),
      home: AnimatedCursor(
        // cursor: SystemMouseCursors.alias,
        circleColor: Colors.red,
        dotColor: Colors.red,
        backgroundColor: Colors.black,
        borderWidth: 2,
        child: Container(color: Colors.black),
      ),
    );
  }
}
32
likes
160
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

Animated Cursor designed to enhance user interface interactions

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, provider

More

Packages that depend on animated_cursor