convert some returns to =>
This commit is contained in:
parent
88d8e1bcde
commit
4058ebc200
|
@ -259,15 +259,14 @@ class InfiniteHomeList extends HookWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<PostView>> Function(int, int) _fetcherFromInstance(
|
Future<List<PostView>> Function(int, int) _fetcherFromInstance(
|
||||||
String instanceUrl, PostListingType listingType, SortType sort) {
|
String instanceUrl, PostListingType listingType, SortType sort) =>
|
||||||
return (page, batchSize) => LemmyApi(instanceUrl).v1.getPosts(
|
(page, batchSize) => LemmyApi(instanceUrl).v1.getPosts(
|
||||||
type: listingType,
|
type: listingType,
|
||||||
sort: sort,
|
sort: sort,
|
||||||
page: page,
|
page: page,
|
||||||
limit: batchSize,
|
limit: batchSize,
|
||||||
auth: accStore.defaultTokenFor(instanceUrl)?.raw,
|
auth: accStore.defaultTokenFor(instanceUrl)?.raw,
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
return InfiniteScroll<PostView>(
|
return InfiniteScroll<PostView>(
|
||||||
prepend: Column(
|
prepend: Column(
|
||||||
|
|
|
@ -3,20 +3,18 @@ import 'package:flutter_hooks/flutter_hooks.dart';
|
||||||
|
|
||||||
class InboxPage extends HookWidget {
|
class InboxPage extends HookWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) => Scaffold(
|
||||||
return Scaffold(
|
appBar: AppBar(),
|
||||||
appBar: AppBar(),
|
body: Center(
|
||||||
body: Center(
|
child: Column(
|
||||||
child: Column(
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
children: [
|
||||||
children: [
|
Text(
|
||||||
Text(
|
'🚧 WORK IN PROGRESS 🚧',
|
||||||
'🚧 WORK IN PROGRESS 🚧',
|
style: Theme.of(context).textTheme.headline5,
|
||||||
style: Theme.of(context).textTheme.headline5,
|
)
|
||||||
)
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue