feat: New account data wallpaper feature

This commit is contained in:
Krille 2024-01-25 16:52:36 +01:00
commit 3b9245c8c7
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
11 changed files with 262 additions and 34 deletions

View file

@ -92,8 +92,8 @@ class Avatar extends StatelessWidget {
? Colors.orange
: Colors.grey;
return Positioned(
bottom: -4,
right: -4,
bottom: -3,
right: -3,
child: Container(
width: 16,
height: 16,
@ -104,11 +104,15 @@ class Avatar extends StatelessWidget {
),
alignment: Alignment.center,
child: Container(
width: 8,
height: 8,
width: 10,
height: 10,
decoration: BoxDecoration(
color: dotColor,
borderRadius: BorderRadius.circular(16),
border: Border.all(
width: 1,
color: Theme.of(context).colorScheme.background,
),
),
),
),