feat: adjust toggle list, callout, quote and divider on mobile (#3894)

* feat: adjust toggle list block

* feat: show block actions when tapping divider

* feat: add toggle list and callout to toolbar

* feat: refactor the emoji picker button

* fix: toggle list integration tests
This commit is contained in:
Lucas.Xu
2023-11-08 21:10:29 +08:00
committed by GitHub
parent 663f9d3423
commit afc6473582
20 changed files with 308 additions and 108 deletions

View File

@ -209,11 +209,8 @@ GoRoute _mobileEmojiPickerPageRoute() {
parentNavigatorKey: AppGlobals.rootNavKey,
path: MobileEmojiPickerScreen.routeName,
pageBuilder: (context, state) {
final id = state.uri.queryParameters[MobileEmojiPickerScreen.viewId]!;
return MaterialPage(
child: MobileEmojiPickerScreen(
id: id,
),
return const MaterialPage(
child: MobileEmojiPickerScreen(),
);
},
);