flutter_arc_text 0.1.0 copy "flutter_arc_text: ^0.1.0" to clipboard
flutter_arc_text: ^0.1.0 copied to clipboard

outdated

A new Flutter project.

Flutter Arc Text #

Renders text along the arc.

Basic usage #

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) => ArcText(
        radius: 100,
        text: 'Hello, Flutter!',
        textStyle: TextStyle(fontSize: 18, color: Colors.black),
        startAngle: -pi / 2,
      );
}

Example #

See example project.