WIP: [paused] feat: add loading caption to providers in cards #416

Closed
def wants to merge 3 commits from add_loading_caption_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,
),
),
if (state != StateType.uninitialized)
IconStatusMask(
status: state,