Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

rotate IconButton flutter

import 'dart:math' as math;

Transform.rotate(
  angle: 180 * math.pi / 180,
  child: IconButton(
    icon: Icon(
      Icons.play,
      color: Colors.white,
    ),
    onPressed: null,
  ),
),
 
PREVIOUS NEXT
Tagged: #rotate #IconButton #flutter
ADD COMMENT
Topic
Name
1+9 =