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,
startanglealignment: startanglealignment.start,
placement: placement.outside,
direction: direction.clockwise
);
}
example
see example project.
Comments are closed.