seong
Flutter - GestureDetector 위젯, 여러위젯들을 버튼화 시켜주기 본문
GestureDetector 위젯
- 움직임(클릭, 더블클릭 등등)을 감지 할 수 있도록 해준다.
- 간단하게 말해 버튼화 시켜준다.
- InkWell과의 차이점: InkWell은 버튼 클릭시 누를때 퍼지는 듯한 모션이 보이지만, GestureDetector은 없다.
소스코드
GestureDetector(
onTap: () => Navigator.pushNamed(context, ForgotPasswordScreen.routeName),
child: const Text(
"Forgot Password",
style: TextStyle(decoration: TextDecoration.underline),
),
),