- Flutter Widget Livebook

CustomPaint

A widget that provides a canvas on which to draw during the paint phase.

Example

CustomPaint(
  painter: Sky(),
  child: Center(
    child: Text(
      'Once upon a time...',
      style: const TextStyle(
        fontSize: 40.0,
        fontWeight: FontWeight.w900,
        color: Color(0xFFFFFFFF),
      ),
    ),
  ),
)

Related Links

  1. Example
  2. Related Links