flutter format
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
erinn 2021-05-13 12:58:43 -07:00
parent 46e48fbdc5
commit 570601f274
3 changed files with 20 additions and 22 deletions

View File

@ -27,12 +27,10 @@ class _DoubleColumnViewState extends State<DoubleColumnView> {
child: flwtch.selectedConversation == ""
? Center(child: Text("pick a contact"))
: //dev
MultiProvider(
providers: [
MultiProvider(providers: [
ChangeNotifierProvider.value(value: Provider.of<ProfileInfoState>(context)),
ChangeNotifierProvider.value(value: Provider.of<ProfileInfoState>(context).contactList.getContact(flwtch.selectedConversation)),
],
child: Container(child: MessageView())),
], child: Container(child: MessageView())),
),
],
);