개발(합니다) (397) 썸네일형 리스트형 [Windows] choco를 GUI로 관리하는 Chocolatey GUI 소개 및 사용 방법 choco가 편하지만 GUI에 익숙한 사람들이 사용하면 좋은 chocolatey GUI입니다. 설치 방법 설치는 choco를 통해서 가능합니다. > choco install -y chocolateygui 사용 방법 1. This PC 왼쪽 탭에서 This PC를 선택되면 현재 PC에 설치된 프로그램을 확인할 수 있습니다. 현재 프로그램의 버전과 업데이트 가능한지를 확인할 수 있습니다. 업데이트가 있는 프로그램의 경우 Out Of Date라는 라벨이 붙습니다. 오른쪽 버튼을 눌러서 Update를 선택하면 개별적으로 업데이트가 가능하고 설치 된 모든 프로그램을 하고 싶으면 오른쪽 상단에 있는 Update All을 선택하면 됩니다. 지금 설치한 프로그램들에 대한 리스트와 정보를 내보내서 다른 PC에서 설치할 .. [Windows] PowerToys 설치와 사용 방법 PowerToys를 알게 된건 키 맵핑을 하려고 프로그램을 찾던 중 알게 되었습니다. 그외에도 다양한 기능들을 제공하고 있어서 잘 사용하고 있습니다. 관련 정보는 아래 사이트에서 확인할 수 있습니다. https://github.com/microsoft/PowerToys https://docs.microsoft.com/ko-kr/windows/powertoys/ 설치 방법 - git 다운로드 아래 사이트에서 .exe 파일을 다운로드 받아서 설치합니다. https://github.com/microsoft/PowerToys/releases/ - choco 다운로드 choco 설치 powertoys 설치 > choco install -y powertoys 사용 방법 설치 후 트레이에서 power Toys를 확인.. [Flutter] avoid using braces in interpolatetion when not needed 상황 mac에서 flutter 개발 중 문자열을 넣는 과정에서 에러가 발생했습니다. 문제 파악 문자열을 넣을 때 대괄호를 넣어서 생기는 이슈였습니다. 해결 방법 대괄호 제거합니다. [Flutter-mac] Unable to find bundled Java version 상황 mac에서 flutter를 개발하던 중 flutter doctor을 해보니 android studio 문제가 발생했습니다. 문제 파악 자바 버전이 맞지 않아 생긴 문제라서 설정을 잡아주어야 합니다. 해결 방법 아래 명령어를 순차적으로 실행합니다. cd /Applications/Android\ Studio.app/Contents/jre ln -s ../jre jdk ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk [Flutter] error: The parameter 'event' of the method 'AlwaysWinPanGestureRecognizer.addAllowedPointer' has type 'PointerDownEvent', which does not match the corresponding type, 'PointerEvent', in the overridden method, 'DragGestureRecognizer.addAllowedP.. 상황 mac os m1에서 에뮬레이터를 이용해서 개발하던 중 Flutter를 개발하던 중 Color Picker를 사용하기 위해서 가장 많이 사용하는 라이브러리(flutter_colorpicker: ^0.5.0)를 추가하고 추가하고 import했는데 에러가 발생했습니다. 문제 파악 flutter는 해외 자료가 많아 찾아보니 버전 문제인걸로 확인했습니다. https://stackoverflow.com/questions/68022011/error-the-parameter-event-of-the-method-alwayswinpangesturerecognizer-whe 해결 방법 버전은 0.5.0에서 0.4.0으로 다운그레이드하여 사용합니다. flutter_colorpicker: ^0.4.0 [Flutter] OutlinedButton 모서리 둥굴게 만드는 방법 버튼 위젯의 경우 모양을 여러가지로 변경해야 하는 경우가 있습니다. 기본 제공하는 모양은 사각형의 모양으로 모서리를 둥굴게 변경해야해 하는 경우에 사용합니다. OutlinedButton.styleForm을 이용해서 모양을 변경할 수 있습니다. 관련 정보는 아래 사이트에서 확인 가능합니다. https://flutter.dev/docs/release/breaking-changes/buttons child: OutlinedButton( onPressed: () => print('2차필터'), child: _filter2Option[index], style: OutlinedButton.styleFrom( padding: EdgeInsets.symmetric(horizontal: 16), shape: const .. [Flutter] Incorrect use of ParentDataWidget. 상황 Expanded를 위젯들에 감싸면서 레이아웃을 잡던 중 에러가 발생했습니다. 문제 파악 Expanded로는 간격을 줄 수 있는 위젯이 정해져있었습니다. 해결 방법 https://stackoverflow.com/questions/54905388/incorrect-use-of-parent-data-widget-expanded-widgets-must-be-placed-inside-flex incorrect use of parent data widget. expanded widgets must be placed inside flex widgets I am getting the following error: i.e.., Another exception was thrown: Incorrect use of Pa.. [Mac] Intellij(android studio)에서 자동 완성 키 중복 해결하는 방법 상황 안드로이드 스튜디오와 intellij의 단축키는 유사하므로 동일하게 보아도 됩니다. mac에서 안드로이드 스튜디오를 사용하려고 했는데 자동완성 기능이 아니라 키보드 선택하는 mac 단축키가 동작했습니다. 안드로이드에서도 단축키가 충돌났다고 알림을 주었습니다. 문제 파악 안드로이드 스튜디오와 mac에서의 단축키가 충돌되었고 안드로이드 스튜디오나 mac의 단축키를 변경해주어야 합니다. 해결 방법 mac의 키보드 단축키는 사용하지 않으니 mac의 단축키를 변경합니다. 이전 1 ··· 8 9 10 11 12 13 14 ··· 50 다음