Skip to content

Commit cacb49e

Browse files
committed
msglist [nfc]: Make MessageListPageState public
Coming up, this State will store a handle onto the compose box (a `GlobalKey<ComposeBoxController>`), which the message action sheet will use to conduct a quote-and-reply interaction. In order for the action sheet to access that handle, it needs to know about MessageListPageState.
1 parent a36b7e3 commit cacb49e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/widgets/message_list.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ class MessageListPage extends StatefulWidget {
2525
final Narrow narrow;
2626

2727
@override
28-
State<MessageListPage> createState() => _MessageListPageState();
28+
State<MessageListPage> createState() => MessageListPageState();
2929
}
3030

31-
class _MessageListPageState extends State<MessageListPage> {
31+
class MessageListPageState extends State<MessageListPage> {
3232
@override
3333
Widget build(BuildContext context) {
3434
return Scaffold(

0 commit comments

Comments
 (0)