[ ANGULAR ] Clear Interval this.interval = setInterval(() => { this.currentTime = this.currentTime + 10; console.log(this.currentTime); }, 1000); pauseTimeLine(value) { clearInterval(this.interval); } FE/Angular HEON.D 2021.09.28
[ ANGULAR ] Build 용량 초과 메세지 ERROR in Exceeded maximum budget Budget 10 kB was not met by 4.38 kB with a total of 14.4 kB. Angular.json 파일의 용량제한을 풀어준다. "budgets": [ { "type": "initial", "maximumWarning": "3mb", "maximumError": "5mb" }, { "type": "anyComponentStyle", "maximumWarning": "20kb", "maximumError": "40kb" } ] FE/Angular HEON.D 2021.09.27
[ MYSQL ] WHERE 를 통한 DELETE 안될때 에러메세지 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 해결방법 Safe 모드 비활성화 set sql_safe_updates=0; 작업후 다시 Safe 모드를 활성화 시켜놓을 것 set sql_safe_updates=1; DB/MYSQL HEON.D 2021.09.25
[ FLUTTER ] GridView 고정높이 주는 방법 ㅁhttps://github.com/flutter/flutter/issues/55290 Change height of GridView row to fixed height · Issue #55290 · flutter/flutter I've noticed that GridView makes each child a square.. I know we can change dynamically height of grid view row by setting childAspectRatio. That however doesn't make it fixed so when the d... github.com * 선언부 class SliverGridDelegateWithFixedCrossAxisCountAndFixedHeigh.. Team/난감했던 이슈들 거북 2021.09.17
[ FLUTTER ] 오늘 날짜 https://stackoverflow.com/questions/51579546/how-to-format-datetime-in-flutter How to format DateTime in Flutter I am trying to display the current DateTime in a Text widget after tapping on a button. The following works, but I'd like to change the format. Current approach DateTime now = DateTime.now(); stackoverflow.com import 'package:intl/intl.dart'; DateTime now = DateTime.now(); String form.. App/Flutter 최진훈 2021.09.08
[ FLUTTER ] TextInput Controller 에러 증상 'initialValue == null || controller == null': is not true. 원인 initialValue 와 controller 는 동시에 사용할 수 없음 관련링크 https://stackoverflow.com/questions/52691887/flutter-initialvalue-null-controller-null-is-not-true-error Flutter - 'initialValue == null || controller == null': is not true. error I'm trying to set an initial value for the text field. But I Can't set the initial value in text form field.. App/Flutter HEON.D 2021.09.08
[ VUE ] IE 11 에서 Vue 화면이 정상적으로 보이지 않는 경우 1. Babel 과 polyfill 사용 2. 메소드 표현방식 ES6 이하 로 선언 Team/난감했던 이슈들 HEON.D 2021.09.03
[ FLUTTER ] Keyboard search and go TextFormField( textInputAction: TextInputAction.search, onFieldSubmitted: (value) { } onChanged: (value) { } ) onFielddSubmitted 이벤트를 사용할 것 App/Flutter HEON.D 2021.09.02
[ FLUTTER ] 앱 번들 빌드 flutter build appbundle https://flutter-ko.dev/docs/deployment/android Android 앱 출시 준비하기 Flutter 앱을 개발하는 동안, 커멘드 라인에서의 `flutter run`을 실행하거나IDE에 있는 툴바 **Run** 과 **Debug**를 선택하여 앱을 테스트할 수 있습니다. Flutter는 기본적으로 앱의 _debug_ 버전을 빌드합니 flutter-ko.dev App/Flutter HEON.D 2021.08.28