user-page

This commit is contained in:
2022-10-26 13:41:29 +08:00
parent afee57df73
commit 099d2b4423
10 changed files with 132 additions and 54 deletions

View File

@@ -40,11 +40,16 @@ class UserTopBar extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
_.userInfo.value.nickname ?? '',
style: const TextStyle(
fontSize: 22,
fontWeight: FontWeight.w400,
InkWell(
onTap: () {
Get.toNamed(UserRoutes.info);
},
child: Text(
_.userInfo.value.nickname ?? '',
style: const TextStyle(
fontSize: 22,
fontWeight: FontWeight.w400,
),
),
),
Row(