By using a multilingual approach build is failing with a not fully clear error "Invalid constant value". As for the last screen, AppBar is taking a proper title where as body content is failing. Any thoughts? Thanks in advance!
By using a multilingual approach build is failing with a not fully clear error "Invalid constant value". As for the last screen, AppBar is taking a proper title where as body content is failing. Any thoughts? Thanks in advance!
2
Answers
You need to remove "const" keyword on your Center widget as your localized text is not a const value.
Since applocalizations provide values that could change over time within the app, it’s not a constant value. So, remove the
const
keyword beforeCenter
widget. Your updated code would look like so