Skip to content

monsieurtanuki/flutter_arc_text

 
 

Repository files navigation

Flutter Arc Text

Renders text along the arc. See demo.

The story behind the plugin is here.

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,
        startAngleAlignment: StartAngleAlignment.start,
        placement: Placement.outside,
        direction: Direction.clockwise
      );
}

Example

See example project.

Releases

No releases published

Packages

No packages published

Languages

  • Dart 85.4%
  • HTML 6.7%
  • Swift 5.1%
  • Kotlin 1.8%
  • Other 1.0%