fix Provider bug with reloading message panes #20

Merged
sarah merged 2 commits from newtrunk into trunk 2021-03-17 19:35:29 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class _ContactRowState extends State<ContactRow> {
builder: (BuildContext builderContext) {
return MultiProvider(
providers: [
ChangeNotifierProvider<ProfileInfoState>(create: (_) => Provider.of<ProfileInfoState>(context)),
Provider.value(value: Provider.of<ProfileInfoState>(context)),
],
child: MessageView(conversationHandle: handle),
);