본문 바로가기
728x90

Flutter79

flutter Dropdown button flutter에서 dropdownbutton 을 만드는 방법에 대해서는 자세하게 나와있는 곳을 찾기가 어렵다. material icon들을 봐도 dropdown button이 안보인다. 그 동안은 pub.dev에서 https://m2.material.io/components/menus#behavior Material Design Build beautiful, usable products faster. Material Design is an adaptable system—backed by open-source code—that helps teams build high quality digital experiences. m3.material.io 선생님.. 왜 디자인 방법만 알려주시고 코드를 제공해주시지 않.. 2022. 11. 1.
flutter open_file library -> REQUEST_INSTALL_PACKAGES error when I try to publish my flutter app. I receive fail message like below screenshot. in flutter project, I searched "REQUEST_INSTALL_PACKAGES" and i found it was used in 'open_file' library. https://stackoverflow.com/questions/73809824/request-install-packages REQUEST_INSTALL_PACKAGES Status: Approved with Issues - Further Action Required We found issues with your app. You need to review and take.. 2022. 10. 30.
list to map, map to list in dart flutter language인 dart 에서는 list to map, map to list 방법을 다양하게 제공하고 있다. https://www.bezkoder.com/dart-convert-list-map 나는 여기서 깨닫고 사용해봤는데 실제로 사용해보니, 플러터에서는 다른 방법을 추천해줬는데 이상하게 list 를 맵으로 사용할 수도 있었다. Map menuMap = { for (var e in menuList) (e).menuId: (e).lunch?.join('\n') ?? '' }; 이게 말이 되나?? 암튼 좋으니까 써보자 2022. 10. 29.
animated dialog in Flutter https://medium.flutterdevs.com/animate-dialogs-in-flutter-b7cac136e1d3 Animate Dialogs In Flutter A dialog resembles a popup window to give a few alternatives to users(options like acknowledging/decay) medium.flutterdevs.com scale animation을 쓰면 좀 자연스러운 UX를 제공할 수 있을 것 같아서 사용해보기로 했다. 써봤는데 잘 동작하지만 종료 후에 애니메이션 자국이 남는다 (그림자인 것 같음).. 결국 그냥 Get.dialog로 불러오기로 했다.. 2022. 10. 27.
728x90