Custom apps

This commit is contained in:
2025-06-30 00:22:59 +08:00
parent 847fc6e864
commit fd979c3a35
4 changed files with 326 additions and 4 deletions

View File

@ -360,7 +360,7 @@ class CallOverlayBar extends HookConsumerWidget {
).padding(all: 16),
),
onTap: () {
context.push('/chat/call/callNotifier.roomId!');
context.push('/chat/call/${callNotifier.roomId!}');
},
);
}

View File

@ -536,7 +536,7 @@ Widget _buildReferencePost(BuildContext context, SnPost item) {
),
],
),
).gestures(onTap: () => context.push('/posts/referencePost.id'));
).gestures(onTap: () => context.push('/posts/${referencePost.id}'));
}
class PostReactionList extends HookConsumerWidget {