We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fabbf4a commit efc2092Copy full SHA for efc2092
lib/widgets/app.dart
@@ -283,6 +283,12 @@ class HomePage extends StatelessWidget {
283
narrow: const MentionsNarrow())),
284
child: Text(zulipLocalizations.mentionsPageTitle)),
285
const SizedBox(height: 16),
286
+ ElevatedButton(
287
+ onPressed: () => Navigator.push(context,
288
+ MessageListPage.buildRoute(context: context,
289
+ narrow: const StarredMessagesNarrow())),
290
+ child: Text(zulipLocalizations.starredMessagesPageTitle)),
291
+ const SizedBox(height: 16),
292
ElevatedButton(
293
onPressed: () => Navigator.push(context,
294
InboxPage.buildRoute(context: context)),
0 commit comments