[Flutter]Try removing 'const' from the constructor invocation.

2023년 10월 21일 by 진아사랑해

    [Flutter]Try removing 'const' from the constructor invocation. 목차
반응형

연습문제를 따라 했는데 위와 같은 에러가 발생했습니다.

이러한 부분은 const 키워드를 사용하면 자주 발생할 수 있습니다.

문제원인

MaterialApp에 const가 붙어 있습니다.

문제해결

const를 삭제하였습니다.

에러가 사라진 것을 보실 수 있습니다.

 

반응형