File tree 3 files changed +497
-1
lines changed 3 files changed +497
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import 'package:flutter_gen/gen_l10n/zulip_localizations.dart';
8
8
import '../model/localizations.dart' ;
9
9
import '../model/narrow.dart' ;
10
10
import 'about_zulip.dart' ;
11
+ import 'inbox.dart' ;
11
12
import 'login.dart' ;
12
13
import 'message_list.dart' ;
13
14
import 'page.dart' ;
@@ -254,6 +255,11 @@ class HomePage extends StatelessWidget {
254
255
narrow: const AllMessagesNarrow ())),
255
256
child: const Text ("All messages" )),
256
257
const SizedBox (height: 16 ),
258
+ ElevatedButton (
259
+ onPressed: () => Navigator .push (context,
260
+ InboxPage .buildRoute (context: context)),
261
+ child: const Text ("Inbox" )), // TODO(i18n)
262
+ const SizedBox (height: 16 ),
257
263
ElevatedButton (
258
264
onPressed: () => Navigator .push (context,
259
265
RecentDmConversationsPage .buildRoute (context: context)),
You can’t perform that action at this time.
0 commit comments