[UIKit -> MessageListView] Remove debug code

Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
Sahil Kumar
2021-02-16 21:32:34 +05:30
parent 5c7cc9cc06
commit f9d74358bc
@@ -241,12 +241,7 @@ class _MessageListViewState extends State<MessageListView> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return WillPopScope( return MessageListCore(
onWillPop: () async {
print('Getting popped');
return false;
},
child: MessageListCore(
loadingBuilder: (context) { loadingBuilder: (context) {
return Center( return Center(
child: const CircularProgressIndicator(), child: const CircularProgressIndicator(),
@@ -282,7 +277,6 @@ class _MessageListViewState extends State<MessageListView> {
), ),
); );
}, },
),
); );
} }