项目作者: ookami-kb

项目描述 :
Arc Text Widget for Flutter
高级语言: Dart
项目地址: git://github.com/ookami-kb/flutter_arc_text.git
创建时间: 2019-12-02T10:39:15Z
项目社区:https://github.com/ookami-kb/flutter_arc_text

开源协议:Other

下载


Flutter Arc Text

Renders text along the arc. See demo.

The story behind the plugin is here.

Basic usage

  1. class MyApp extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) => ArcText(
  4. radius: 100,
  5. text: 'Hello, Flutter!',
  6. textStyle: TextStyle(fontSize: 18, color: Colors.black),
  7. startAngle: -pi / 2,
  8. startAngleAlignment: StartAngleAlignment.start,
  9. placement: Placement.outside,
  10. direction: Direction.clockwise
  11. );
  12. }

Example

See example project.