I had an idea to simulation handwriting with Flutter. We can use Bezier curve to draw it easily in static mode. With dynamic mode for simulation, how can do this.

First revise, Bezier curve:

Linear Bézier curves

B(t) = P0 + t(P1 - P0) = (1-t)P0 + tP1, 0<= t <=1
None
Animation of a linear Bézier curve, t in [0,1]

Quadratic curves

None
Animation of a quadratic Bézier curve, t in [0,1]

Recursive definition

None

Implement function

Test function

None

Next create my own bezier for each character and start drawing animation step by step as the way you writing.

Expectation: My suggest to improve idea, can drawing with specific font and specific way writing by combining AI.

Repo (tag: Demo4, beesight.dart file)

Demo

None

Clip