Flutter 로 일반 Text 나 Image위에 마우스를 가져다 댈때, 즉 hover 될 때, 버튼처럼 손모양의 아이콘 등으로 바꾸고 싶을 때가 있다. 그럴때는 MouseRegion 위젯을 사용하면 된다. 예제 child: GestureDetector( onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => SomeWhere())); }, child: MouseRegion( cursor: SystemMouseCursors.click, child: Text( "Somewhere", style: TextStyle( color: Colors.white54, fontSize: 20, ), ), )), 위처럼 GestureDet..