Dev/Flutter

Flutter - TextButton 기본 레이아웃 스타일 없애는 방법 2가지

healthyryu 2021. 12. 16. 17:00

1. Style 로 없애는 방법

TextButton(
  onPressed: (){},
  child: Text('버튼'),
  style: TextButton.styleFrom(
    minimumSize: Size.zero,
    padding: EdgeInsets.zero,
    tapTargetSize: MaterialTapTargetSize.shrinkWrap,
  ),
)

https://stackoverflow.com/a/69382707/3897810

 

 

2. InkWell 로 감싸는 방법

InkWell(
  onTap: () {
    // Text 클릭시 반응하는 곳
  },
  child: const Padding(
    padding: EdgeInsets.all(5.0),
    child: Text('버튼'),
  ),
),
반응형

'Dev > Flutter' 카테고리의 다른 글

Flutter - Enum  (0) 2022.01.04
Flutter - Divider(구분선)  (0) 2021.12.29
Flutter - Local Notification 참고  (0) 2021.12.06
Flutter - border 적용  (0) 2021.11.24
Flutter - 함수 파라미터에 기본 인자 설정하기  (0) 2021.11.23