- Flutter Widget Livebook

RotatedBox

A widget that rotates its child by a integral number of quarter turns.

Example

RotatedBox(
  quarterTurns: 3,
  child: const Text('Hello World!'),
)

Related Links

  1. Example
  2. Related Links