Answers for "rotate icon free download"

CSS
0

rotate icon

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
Posted by: Guest on November-05-2021
0

rotate an icon

new RotatedBox(
  quarterTurns: 1, // 1 is 90 degrees - 2 is 180 degrees and so on
  child: Icon(Icons.arrow_back)
)
Posted by: Guest on October-23-2021

Browse Popular Code Answers by Language