Realm detail, and member management

This commit is contained in:
2024-12-01 12:34:27 +08:00
parent bb23a12be3
commit db9f4504db
6 changed files with 368 additions and 9 deletions

View File

@ -207,7 +207,12 @@ class _RealmScreenState extends State<RealmScreen> {
).padding(horizontal: 24, bottom: 14),
],
),
onTap: () {},
onTap: () {
GoRouter.of(context).pushNamed(
'realmDetail',
pathParameters: {'alias': realm.alias},
);
},
),
);
},