Search code examples
flutterassetspickerwechatnon-english

Flutter: WeChat Assets Picker. Change language to English


I am using flutter wechat_assets_picker, but the language in select picture/camera screen is in Chinese: enter image description here

Is there anyway to change the language to English? Thank you


Solution

  • you have to just pass EnglishTextDelegate to textDelegate argument

    selectedImages = await AssetPicker.pickAssets(context,textDelegate:EnglishTextDelegate() );