Auto complete, better metion parser, sticker placeholder v2

This commit is contained in:
2025-10-12 17:10:18 +08:00
parent 537e49f1a4
commit 9d39c6a825
10 changed files with 497 additions and 49 deletions

View File

@@ -633,7 +633,7 @@ final routerProvider = Provider<GoRouter>((ref) {
GoRoute(
name: 'accountProfile',
path: '/account/:name',
path: '/accounts/:name',
builder: (context, state) {
final name = state.pathParameters['name']!;
return AccountProfileScreen(name: name);