Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Tauseef-Hilal committed Sep 15, 2023
1 parent 8aa4561 commit 4bb82c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions lib/features/chat/views/chat.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class _ChatPageState extends ConsumerState<ChatPage> {
Widget build(BuildContext context) {
final self = widget.self;
final other = widget.other;
print("CLIKED");

return Platform.isAndroid
? WillPopScope(
Expand Down Expand Up @@ -271,7 +270,6 @@ class _ChatInputContainerState extends ConsumerState<ChatInputContainer>
final showEmojiPicker = ref.watch(
chatControllerProvider.select((s) => s.showEmojiPicker),
);
print("CLICKED 222");

return Theme(
data: Theme.of(context).copyWith(
Expand Down
3 changes: 0 additions & 3 deletions lib/shared/widgets/gallery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,6 @@ class _GalleryState extends ConsumerState<Gallery>
child: StreamBuilder(
stream: _albumsFuture,
builder: (context, snap) {
if (snap.hasError) {
print(snap.error);
}
if (!snap.hasData) {
return Container();
}
Expand Down

0 comments on commit 4bb82c4

Please sign in to comment.