Skip to content

Commit

Permalink
💾 Feat(AndroidDownloadPage): Add loading animation for f-droid logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Sep 8, 2024
1 parent da43064 commit 4c9c4c2
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,15 @@ Widget getAndroidPage(
children: [
Padding(
padding: EdgeInsets.all(2),
child: WebsafeSvg.asset('ThirdParty/fdroid-logo.svg', height: 30.0),
child: WebsafeSvg.asset(
'ThirdParty/fdroid-logo.svg',
height: 30.0,
placeholderBuilder: (context) => const SizedBox(
width: 30,
height: 30,
child: const CircularProgressIndicator(),
),
),
),
recommendedChip,
],
Expand Down

0 comments on commit 4c9c4c2

Please sign in to comment.