본문 바로가기

stack3

Flutter 플러터에서 GridTile 내 이미지 위에 잉크웰 리플 효과 추가, InkWell ripple over top of image in GridTile in Flutter 질문 나는 사용자가 타일을 탭할 때 GridTile 안의 이미지 위에 리플 효과를 얻기 위해 InkWell을 사용하려고 시도하고 있습니다. 이미지 자체가 리플을 가리고 있는 것 같습니다. 이미지를 제거하면 리플이 보입니다. 아래는 단일 GridTile의 코드입니다. return new InkWell( onTap: () => debugPrint(s.displayName), highlightColor: Colors.pinkAccent, splashColor: Colors.greenAccent, child: new GridTile( footer: new GridTileBar( title: new Text(s.displayName), subtitle: new Text(s.gameName), backgroundC.. 2023. 12. 11.
Flutter 항목을 탭한 후에 Scaffold의 서랍을 닫는 방법은 무엇인가요?, How to close Scaffold's drawer after an item tap? 질문 스캐폴드의 드로어에서 항목을 탭한 후에 자동으로 숨기고 싶습니다. 플러터에서 어떻게 할 수 있을까요? 답변 Navigator.pop()는 Drawer 경로를 스택에서 제거하고 닫히도록합니다. 2023. 8. 23.
Flutter 컨테이너 위젯을 수직으로 부모 요소에 채우도록 만드세요., Make container widget fill parent vertically 질문 TL;DR Need the container to fill the vertical space so that it can act as a ontap listener. Have tried most solutions but nothing seems to work. So what I am trying to do is to make my container fill up the vertical space while still having a fixed width. Two first is what I have and third is what I want. The idea is to have the container transparent with a gesture ontap listener. If anyone h.. 2023. 6. 12.