我的二维码

This commit is contained in:
2022-10-31 11:58:17 +08:00
parent 55a1801895
commit b7f0fe3ac8
5 changed files with 59 additions and 18 deletions

View File

@@ -12,6 +12,7 @@ class UserTopBar extends StatelessWidget {
const UserTopBar({Key? key}) : super(key: key);
final double paddingTop = 96;
final double paddingBottom = 24;
final double avatarHeight = 64;
@override
@@ -22,9 +23,9 @@ class UserTopBar extends StatelessWidget {
left: 24,
top: paddingTop,
right: 24,
bottom: 24,
bottom: paddingBottom,
),
// height: avatarHeight + paddingTop + 24,
height: avatarHeight + paddingTop + paddingBottom,
child: GetX<AuthService>(builder: (_) {
return Row(
crossAxisAlignment: CrossAxisAlignment.end,