Skip to main content

Command Palette

Search for a command to run...

Bugs

Flutter Issue

  • Error: 🐞

The constructor being called isn't a const constructor. Try removing 'const' from the constructor invocation.

  • Solution 👇
when you're using const for existing widgets or class and trying to implement in a child as Container, Images, etc. it will throw the error above mention: "The constructor being called isn't a const constructor. Try removing 'const' from the constructor invocation." make sure you remove the const keyword because it's constant.