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

A Flutter widget that displays animated circular text.

example/animated_circular_text_example.dart

import 'package:animated_circular_text/animated_circular_text.dart';
import 'package:flutter/material.dart';

void main() => runApp(const CircularTextExample());

class CircularTextExample extends StatelessWidget {
  const CircularTextExample({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'CircularText Demo',
      home: Scaffold(
        appBar: AppBar(title: const Text('CircularText Example')),
        body: Center(
          child: CircularText(
            text: 'FlutterRocks',
            diameter: 200,
            fontSize: 24,
            spinDuration: const Duration(seconds: 20),
            onHover: CircularTextHoverEffect.goBonkers,
          ),
        ),
      ),
    );
  }
}
2
likes
150
points
37
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter widget that displays animated circular text.

Repository (GitHub)

License

MIT (license)

Dependencies

characters, flutter

More

Packages that depend on animated_circular_text