How to change CupertinoDatePicker display language?

后端 未结 4 1072
攒了一身酷
攒了一身酷 2021-01-01 03:54

I\'m follow Flutter docs to show CupertinoDatePicker. But language alway is English. Please show me how to change this.

Here my code:

void _showDateP         


        
4条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 04:40

    MaterialApp( ... localizationsDelegates: [ GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate, ] )

    This solves the problem.

提交回复
热议问题