flutter_arc_text 0.1.1 flutter_arc_text: ^0.1.1 copied to clipboard
Flutter widget that renders text along the arc.
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.