tried testing sync bug and fixed ads even more

This commit is contained in:
Kima
2024-09-28 17:33:57 +02:00
parent a2cbe5d90b
commit d7741ca1c4
3 changed files with 8 additions and 6 deletions

View File

@@ -41,8 +41,8 @@ class AdTile extends StatelessWidget {
? ClipRRect(
borderRadius: BorderRadius.circular(50.0),
child: Image.network(
width: 45.0,
height: 45.0,
width: 42.0,
height: 42.0,
ad.logoUrl.toString(),
errorBuilder: (context, error, stackTrace) {
ad.logoUrl = null;

View File

@@ -12,6 +12,7 @@ class AdViewable extends StatelessWidget {
@override
Widget build(BuildContext context) {
return AdTile(
padding: const EdgeInsets.symmetric(horizontal: 5.0),
ad,
onTap: () => launchUrl(
ad.launchUrl,