faizy 313
faizy 313

Reputation: 35

how to translate variable to other language

I want to translate my app into different languages.Work fine on text widget but not working when a variable comes with a TEXT widget

date == null
    ? Text(
        'Expected_Date'.tr,
      )
    : Text(
        'Expected_Date = $dueDate'.tr,
      ),

Upvotes: 2

Views: 361

Answers (1)

manhtuan21
manhtuan21

Reputation: 3430

Change variable to this :

Text(
  '${'Expected_Date'.tr} = $dueDate'
)

Upvotes: 1

Related Questions