build: Upgrade to Flutter 3.44.2
This commit is contained in:
@@ -139,7 +139,7 @@ class _NewsPanel extends StatelessWidget {
|
||||
return ListView.separated(
|
||||
padding: const EdgeInsets.only(right: 16, bottom: 24),
|
||||
itemCount: model.newsItems.length,
|
||||
separatorBuilder: (_, __) => const SizedBox(height: 10),
|
||||
separatorBuilder: (_, _) => const SizedBox(height: 10),
|
||||
itemBuilder: (context, index) {
|
||||
return _NewsCard(item: model.newsItems[index]);
|
||||
},
|
||||
@@ -239,7 +239,7 @@ class _NewsCard extends StatelessWidget {
|
||||
child: Image.network(
|
||||
item.imageUrl!,
|
||||
fit: BoxFit.cover,
|
||||
errorBuilder: (_, __, ___) => Container(
|
||||
errorBuilder: (_, _, _) => Container(
|
||||
color: cs.surface.withAlpha(120),
|
||||
alignment: Alignment.center,
|
||||
child: Icon(
|
||||
|
||||
Reference in New Issue
Block a user