feat: add load animation to providers screen #412

Closed
def wants to merge 4 commits from add_load_animation_to_providers into master
1 changed files with 9 additions and 0 deletions

View File

@ -152,6 +152,15 @@ class _Card extends StatelessWidget {
status: state,
icon: Icon(icon, size: 30, color: Colors.white),
),
if (state == StateType.uninitialized)
const SizedBox(
width: 24,
height: 24,
child: Icon(
Icons.access_time,
color: Colors.white,
Review

Turn on the light theme and see how it fails. Use color tokens, not absolute colors

Turn on the light theme and see how it fails. Use color tokens, not absolute colors
),
),
if (state != StateType.uninitialized)
IconStatusMask(
status: state,