add comma to make formatting more sane
This commit is contained in:
parent
585baf58f9
commit
b82622190f
|
@ -62,8 +62,8 @@ class HomeTab extends HookWidget {
|
|||
ListTile(
|
||||
title: Text('Subscribed'),
|
||||
leading: SizedBox(width: 20, height: 20),
|
||||
onTap: () =>
|
||||
pop(SelectedList(listingType: PostListingType.subscribed)),
|
||||
onTap: () => pop(
|
||||
SelectedList(listingType: PostListingType.subscribed)),
|
||||
),
|
||||
ListTile(
|
||||
title: Text('All'),
|
||||
|
@ -119,7 +119,8 @@ class HomeTab extends HookWidget {
|
|||
onTap: accStore.isAnonymousFor(instance)
|
||||
? () => showCupertinoModalPopup(
|
||||
context: context,
|
||||
builder: (_) => AddAccountPage(instanceUrl: instance))
|
||||
builder: (_) =>
|
||||
AddAccountPage(instanceUrl: instance))
|
||||
: () => pop(SelectedList(
|
||||
listingType: PostListingType.subscribed,
|
||||
instanceUrl: instance,
|
||||
|
@ -136,7 +137,8 @@ class HomeTab extends HookWidget {
|
|||
),
|
||||
]
|
||||
],
|
||||
));
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
if (val != null) {
|
||||
|
|
Loading…
Reference in New Issue