1
0
mirror of https://github.com/immich-app/immich.git synced 2025-06-24 04:46:50 +02:00

chore(mobile) Improve mobile UI (#1038)

This commit is contained in:
Alex
2022-11-30 10:58:07 -06:00
committed by GitHub
parent 1068c4ad23
commit d31eddf32f
11 changed files with 267 additions and 106 deletions

View File

@ -15,7 +15,10 @@ class ImmichLoadingIndicator extends StatelessWidget {
borderRadius: BorderRadius.circular(10),
),
padding: const EdgeInsets.all(15),
child: const CircularProgressIndicator(color: Colors.white),
child: const CircularProgressIndicator(
color: Colors.white,
strokeWidth: 2,
),
);
}
}