We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa5e73 commit 24b830fCopy full SHA for 24b830f
lib/account/view/add_source_to_follow_page.dart
@@ -48,6 +48,9 @@ class AddSourceToFollowPage extends StatelessWidget {
48
}
49
50
return BlocBuilder<AccountBloc, AccountState>(
51
+ buildWhen: (previous, current) =>
52
+ previous.preferences?.followedSources != current.preferences?.followedSources ||
53
+ previous.status != current.status,
54
builder: (context, accountState) {
55
final followedSources =
56
accountState.preferences?.followedSources ?? [];
0 commit comments