전체 글
-
프로그래밍 명언기타 2026. 5. 3. 18:53
The best way to predict the future is to invent it.미래를 예측하는 가장 좋은 방법은 미래를 창조하는 것이다- Alan Kay I'm not a great programmer.I'm just a good programmer with great habits.나는 위대한 프로그래머가 아니다. 나는 단지 훌륭한 습관을 가진 좋은 프로그래머일 뿐이다.- Kent Beck Controlling complexity is the essence of computer programming.복잡성을 통제하는 것이 컴퓨터 프로그래밍의 본질이다- Brian Kernighan First, solve the problem.Then, write the code.먼저 문제를 해결하라. 그..
-
[React Native] react-native-action-button zIndex 설정하기ReactNative 2026. 1. 28. 21:08
READMEhttps://github.com/mastermoo/react-native-action-button GitHub - mastermoo/react-native-action-button: customizable multi-action-button component for react-nativecustomizable multi-action-button component for react-native - mastermoo/react-native-action-buttongithub.com node_modues/react-native-action-button/index.d.tsexport interface ActionButtonProperties extends ViewProperties { reset..
-
Maximum update depth exceeded.ERROR 2025. 10. 31. 22:56
Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops onPress에 함수를 직접 적어서 발생 아래 코드로 수정하여 해결// 에러 발생 코드// 수정된 코드 function(data)} />
-
Execution failed for task ':app:installDebug'. INSTALL_FAILED_INSUFFICIENT_STORAGEERROR 2025. 10. 31. 21:45
* Android Execution failed for task ':app:installDebug'.> java.util.concurrent.ExecutionException: cohttp://m.android.builder.testing.api.DeviceException: cohttp://m.android.ddmlib.InstallException: INSTALL_FAILED_INSUFFICIENT_STORAGE: Failed to override installation location 저장공간 부족으로 발생에뮬레이터는 [Android Studio] - [Device Manager] - [Wipe Data] - ( ./gradlew clean ) 로 저장공간 확보 후 재실행 * iOSerro..
-
Changing numColumns on the fly is not supported.ERROR 2025. 8. 4. 21:38
Changing numColumns on the fly is not supported. Change the key prop on FlatList when changing the number of columns to force a fresh render of the component. FlatList의 속성이 렌더 이후 변경되면 발생하는 오류(위의 경우 numColumns)넘겨주는 속성값을 useState로 관리하여 상태값 변경 시 다시 렌더될 수 있도록 수정하여 해결