Commit 34bf5d1b by tanghuan

调整iOS手机号码登录界面上“其他登录方式”的位置

1 parent 52ea7621
......@@ -20,6 +20,7 @@ class LoginPhonePage extends StatelessWidget {
var loginPhoneCubit = ctx.read<LoginPhoneCubit>();
var iosBackHome = Platform.isIOS
? [
SizedBox(height: 20),
InkWell(
onTap: () {
loginPhoneCubit.goLoginMain();
......@@ -54,6 +55,7 @@ class LoginPhonePage extends StatelessWidget {
: [];
var androidBackHome = Platform.isAndroid
? [
SizedBox(height: 140),
Text(
'其他方式登录',
style: TextStyle(
......@@ -110,7 +112,6 @@ class LoginPhonePage extends StatelessWidget {
),
SizedBox(height: 15),
_buildAgreement(ctx, loginPhoneCubit, state.agreed),
SizedBox(height: 140),
...iosBackHome,
...androidBackHome,
],
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!