📱 Optimize the call experience on landscape device

This commit is contained in:
2024-10-06 01:25:10 +08:00
parent 9e6829bd5a
commit 9c3d181deb
6 changed files with 14 additions and 69 deletions

View File

@ -8,7 +8,10 @@ class EmptyPagePlaceholder extends StatelessWidget {
return Material(
color: Theme.of(context).colorScheme.surface,
child: Center(
child: Image.asset('assets/logo.png', width: 80, height: 80),
child: ClipRRect(
borderRadius: const BorderRadius.all(Radius.circular(12)),
child: Image.asset('assets/logo.png', width: 80, height: 80),
),
),
);
}