Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 18, 2018 21:41
Show Gist options
  • Save Rahiche/03d570e0a1ea872773b9471f7edebbb6 to your computer and use it in GitHub Desktop.
Save Rahiche/03d570e0a1ea872773b9471f7edebbb6 to your computer and use it in GitHub Desktop.
//Example 1: Rotate Text
//I will leave the fading Icon for you
Padding(
padding: const EdgeInsets.all(8.0),
child: Transform.rotate(
alignment: Alignment.bottomLeft,
angle: vectors.degrees2Radians * angle,
child: Text(
"FlutteRotate",
style: TextStyle(color: Colors.white, fontSize: 18.0),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment