How to translate this widget ?
Hello, how to translate this widget ? For exemple words : "CANCEL", "None Selected"
cancelText: Text("None Selected"),
Hi @applicationsweb
It looks like you can change the text of the buttons, I am using .tr() from easy_localization to run my translations depending on os language.
But you can just change the text manually if you don't need it to change.
MultiSelectDialogField(
buttonText: const Text(
'Select',
style: TextStyle(
color: Colors.white,
),
).tr(),
cancelText: const Text('ביטול'), // Changing cancel text
confirmText: const Text('Confirm/OK text here'),
....
But I am not sure about the Select at the top of the popup, @OlivierRidgebase do you know how to change its text?

Hi @applicationsweb
It looks like you can change the text of the buttons, I am using
.tr()from easy_localization to run my translations depending on os language.But you can just change the text manually if you don't need it to change.
MultiSelectDialogField( buttonText: const Text( 'Select', style: TextStyle( color: Colors.white, ), ).tr(), cancelText: const Text('ביטול'), // Changing cancel text confirmText: const Text('Confirm/OK text here'), ....But I am not sure about the
Selectat the top of the popup, @OlivierRidgebase do you know how to change its text?
Hi @guyluz11 , I don't know if it's what you are looking for, It's a long time that I configured the widget, but there is a title option
Thanks @OlivierRidgebase That is precisely what I have searched for.