ion-searchbar ionChange not working solution

Problem ionic 7 업데이트 이후에 ion-searchbar 의 ionChange 이벤트가 fire 되지 않는 현상이 생긴다. ‘Enter’키를 누른 이후에는 이벤트가 발생된다. After the ionic 7 update, the ionChange event of ion-searchbar does not fire. An event occurs after pressing the ‘Enter’ key. 구글을 찾아보니, 에러가 리포팅되어 있었다. 근데 해결방법은? When I searched Google, an error was reported. … Read more

Budget 4.00 kB was not met by 6.22 kB with a total of 10.22 kB

Error Budget 4.00 kB was not met by 6.22 kB with a total of 10.22 kB   Solution budget is a group of limits to certain values that affect site performance edit angular.json { “type”: “initial”, “maximumWarning”: “4mb”, ⇐ “maximumError”: “5mb” ⇐ }, { “type”: “anyComponentStyle”, “maximumWarning”: “150kb”, ⇐ “maximumError”: “150kb” ⇐ }

becvert/cordova-plugin-websocket-server Address already in use solution

wsserver still open after closing the app? #77 start app open a server close the app with the taskmanager (android) call restartServer function (see below) -> “stopped listening on :::9090. Reason: Address already in use” I met same problem in my source. But There is no answer I Found Solution Like this edit your source: net/becvert/cordova/WebSocketServerPlugin.java … Read more

IONIC 초기 셋팅

IONIC 이 뭔가요? 한번의 코딩으로 ANDROID, IOS, WWW 모두를 만들어 주는 프레임워크입니다. 필자는 원래 게임개발을 하다 모바일 앱(APP)을 만들고 싶어 공부를 시작했어요. 안드로이드 스튜디오, OBJECT C를 공부하다 문득, 과정이 너무 복잡하게 느껴져 검색후 IONIC 을 결정하였습니다. (MVC 형태가 익숙했습니다.) 딱히 생각을 많이 하는 성격이 아니라, 일단 시작해 보고 편리하지 않으면 접으려고 했습니다. 한국자료는 거의 없어서 … Read more