Compare commits
2 Commits
d1e8234b93
...
06f04eb3a5
Author | SHA1 | Date | |
---|---|---|---|
|
06f04eb3a5 | ||
|
8af97e43b4 |
@@ -101,7 +101,7 @@ class SliverArticlesList extends ConsumerWidget {
|
||||
publisherId: publisherId,
|
||||
).notifier,
|
||||
contentBuilder:
|
||||
(data, widgetCount, endItemView) => SliverList.builder(
|
||||
(data, widgetCount, endItemView) => SliverList.separated(
|
||||
itemCount: widgetCount,
|
||||
itemBuilder: (context, index) {
|
||||
if (index == widgetCount - 1) {
|
||||
@@ -111,6 +111,7 @@ class SliverArticlesList extends ConsumerWidget {
|
||||
final article = data.items[index];
|
||||
return WebArticleCard(article: article, showDetails: true);
|
||||
},
|
||||
separatorBuilder: (context, index) => const SizedBox(height: 12),
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -155,7 +156,7 @@ class ArticlesScreen extends ConsumerWidget {
|
||||
slivers: [
|
||||
SliverPadding(
|
||||
padding: const EdgeInsets.only(
|
||||
top: 8,
|
||||
top: 12,
|
||||
left: 8,
|
||||
right: 8,
|
||||
),
|
||||
|
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
# In Windows, build-name is used as the major, minor, and patch parts
|
||||
# of the product and file versions while build-number is used as the build suffix.
|
||||
version: 3.2.0+127
|
||||
version: 3.2.0+128
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.2
|
||||
|
Reference in New Issue
Block a user