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

'The "Animated Cursor" package is a Flutter package designed to enhance user interface interactions by providing a visually appealing animated cursor. It offers a customizable animated cursor widget t [...]

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),
      ),
    );
  }
}
33
likes
0
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

'The "Animated Cursor" package is a Flutter package designed to enhance user interface interactions by providing a visually appealing animated cursor. It offers a customizable animated cursor widget that developers can easily integrate into their Flutter applications. With this package, developers can customize various properties of the cursor, such as color, shape, duration of animations, and border width, to match the design and style of their applications. '

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, provider

More

Packages that depend on animated_cursor