본문 바로가기

Development82

[React] Error in function createFiberFromTypeAndProps in ./node_modules/react-dom/cjs/react-dom.development.js 해결 개츠비 개발 도중 발생한 에러 나의 경우는 1. 대문자로 시작하지 않음 2. export default를 작성하지 않음. 이 두 가지가 문제였다. 1. const test 는 const Test 와 같이 작성되어야 한다. const test = () => { //에러 return ( This is a test page! ) } ---------------------------------------- // 올바른 코드 const Test = () => { return ( This is a test page! ) } 2. 위 코드에서는 export default가 없다. 아래와 같이 수정해야 한다. const Test = () => { return ( This is a test page! ) } export.. 2022. 6. 19.
[git] error: you need to resolve your current index first 해결 checkout 하려고 했는데 error: you need to resolve your current index first 에러가 발생했다. 그 뒤로는 error: you need to resolve your current index first 파일이름 needs merge . . . 해결방법 git reset –merge 간단하게 git reset을 하고 merge 해주면 된다. 2022. 6. 17.
[Flutter] Error: The argument type 'IconData' can't be assigned to the parameter type 'Widget' 해결 플러터 위젯에 icon을 추가하려 했을 때 발생한 에러. 이렇게 아이콘을 작성하였다. icon: Icons.person_outline, 하지만 플러터에서 모든 것은 위젯이기 때문에, icon도 Icon 위젯을 사용해서 작성해야 한다. icon: const Icon(Icons.person_outline), 2022. 6. 16.
Flutter for 구문 (for loop) 사용 플러터에서는 반복문을 처리할 수 있는 방법이 여러가지 있다. 1. for in @override Widget build(BuildContext context) { List text = [1,2,3,4]; return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Container( child: Column( children: [ for ( var i in text ) Text(i.toString()) ], ), ), ); 2. forEach forEach는 자바스크립트의 forEach와 작동방식이 같은데, flutter 공식 docs에서는 forEach보다는 for in 구문을 권장한다. forEach() functions are widel.. 2022. 6. 15.