I\'d like to perform a very simple 2D rotation of a Container widget (that contains a handful of other widgets.) This widget would be rotated around a single fixed point in the
You can use RotatedBox Widget to rotate any widget:
RotatedBox( quarterTurns: 3, child: Container( color:Colors.red ), ),