[Flutter] 위젯 회전시키기
앱을 만들다보면 한 위젯을 계속 회전시켜야 하는 경우가 있다.이럴 때 사용하기 좋은 Rotation 위젯을 만들어보았다.Rotation( speed: 30, // 1초에 30도 회전 child: Image.network('https://picsum.photos/seed/hyuni/100/200'),), 이 위젯을 만든 과정을 되짚어보자.1. 위젯 회전시키기다음과 같이 Transform 위젯을 이용하면 위젯을 쉽게 회전시킬 수 있다.import 'dart:math';import 'package:flutter/material.dart';class Rotation extends StatelessWidget { const Rotation({super.key}); @override Widget build..