修复: 1.首页公历在上,农历在下

2.订单页面防诈骗提示语
master
zhang 5 years ago
parent c5b89b6a7a
commit 7e51ed239c

@ -105,9 +105,8 @@ class HomeWeatherWidgetState extends State<HomeWeatherWidget>
),
Spacer(),
Text(
RecookLunar(lunar).toString(),
style: textStyle,
),
"${nowDateTime.year}.${nowDateTime.month}.${nowDateTime.day}${_normalText(widget.homeWeatherModel.week)}",
style: textStyle),
],
),
Flex(
@ -147,8 +146,9 @@ class HomeWeatherWidgetState extends State<HomeWeatherWidget>
child: Container(
alignment: Alignment.centerRight,
child: Text(
"${nowDateTime.year}.${nowDateTime.month}.${nowDateTime.day}${_normalText(widget.homeWeatherModel.week)}",
style: textStyle),
RecookLunar(lunar).toString(),
style: textStyle,
),
)),
],
),

@ -38,7 +38,7 @@ class OrderCenterPage extends StatefulWidget {
class _OrderCenterPageState extends BaseStoreState<OrderCenterPage>
with TickerProviderStateMixin {
bool _showAlert = false;
bool _showAlert = true;
TitleSwitchController _titleSwitchController = TitleSwitchController();
final String _alertMessage =
"重要提醒:请谨防网络及客服诈骗!瑞库客不会以订单异常、系统维护等情况为由,要求你进行退款操作。";
@ -197,6 +197,7 @@ class _OrderCenterPageState extends BaseStoreState<OrderCenterPage>
return _item(index);
},
)),
_showAlert ? _alertWidget() : Container(),
Expanded(
child: CacheTabBarView(
controller: _tabController,

Loading…
Cancel
Save