전체 글
-
Flutter Button hover and click effect disableDEV/flutter (dart) 2023. 2. 10. 10:20
Flutter의 기본 태마 버튼의 경우 버튼에 마우스를 올려두면 이팩트가 생긴다. 마음에 안들어서 버튼 호버 및 클릭 이팩트를 끄는 방법을 찾아봤다. 버튼예시 IconButton( icon: Icon(Icons.add_box_outlined,), iconSize: 30, splashColor: Colors.transparent,// *이 코드를 추가 highlightColor: Colors.transparent,// *이 코드를 추가 hoverColor: Colors.transparent,// *이 코드를 추가 onPressed: () { }, )
-
Flutter HTTP 통신(GET, POST...) 패키지DEV/flutter (dart) 2023. 2. 10. 10:08
Flutter에서 http 통신 하는 법. 사용 패키지 https://pub.dev/packages/http http | Dart Package A composable, multi-platform, Future-based API for HTTP requests. pub.dev 설치방법 (패키지 받는 방법) 1. pubspec.yaml 에서 http 등록, "dev_dependencies:" 하단에 "http: 사용버전" 등록 후 노란색 전구를 클릭하여 pub get 눌러서 install dev_dependencies: flutter_test: sdk: flutter http: ^0.13.4 2. 안드로이드의 경우 permission을 허가해야 함. 맨 윗줄 하단에 permission 추가 사용예시 // ..
-
cmd(power shell) 파일명 일괄 변경하기DEV/other things 2023. 2. 9. 16:21
변경할 파일의 경로를 cmd로 켜주고 다음과 같이 명령어 입력 (엑셀이나 에디터로 일괄 변경하면 편리함) ren "대상파일명" "변경할파일명" ren "대상파일명" "변경할파일명" ren "대상파일명" "변경할파일명" ren "대상파일명" "변경할파일명" ren "대상파일명" "변경할파일명" ren "대상파일명" "변경할파일명" ... (무한개 변경 가능) * 유용한 링크 https://seokbong.tistory.com/170 해당 디렉터리(dir) 내의 모든 파일명 추출하기 (해당 dir에서) dir /b/a-d>list.txt * 윈도우의 경우 폴더 url에 cmd를 입력하면 해당 폴더(경로)에 바로 cmd를 켜준다. seokbong.tistory.com
-
yt-dpl youtube mp3 리스트 다운로드 (with 썸네일, 메타데이터, 프리미엄)DEV/other things 2023. 2. 9. 15:42
1. Scoop 설치 (window에서 powershell을 사용한다면...) 이 부분은 어떤 OS, 어떤 방식으로 패키지를 받을 것인지에 따라 선택 https://www.lesstif.com/software-architect/scoop-admin-windows-51282748.html Scoop - admin 권한이 필요없는 Windows 용 패키지 매니저 만약 scoop 을 다른 폴더(예: d:\app\scoop)에 설치하려면 power shell 을 실행하고 다음 명령어를 입력합니다. [environment]::setEnvironmentVariable('SCOOP','D:\App\\Scoop','User') $env:SCOOP='D:\Applications\Scoop' iex (new-object ..