animated_cursor 1.0.0
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),
),
);
}
}