A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
- 修改src/widget_help.dart,将通知汉化:
Success
改成成功
,Error
改成失败
。 - 修改src/widgets/aut_card.dart,修改class _LoginCardState中build方法的final authForm变量
- 将登录按钮
_buildSubmitButton
放到_buildForgotPassword
和_buildSwitchAuthButton
的前面,并添加SizedBox
和Row
,如下: - SizedBox(height: 20,), Container( padding: Paddings.fromRBL(cardPadding), width: cardWidth, child: Column( children: [ _buildSubmitButton(theme, messages), Row( mainAxisAlignment: MainAxisAlignment.center, children: [ _buildForgotPassword(theme, messages), _buildSwitchAuthButton(theme, messages), ],) ], ), ),
- 将登录按钮