Merge pull request #102 from krawieck/smaller-tweaks
This commit is contained in:
commit
8b034a5292
|
@ -117,16 +117,18 @@ class InstancePage extends HookWidget {
|
|||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 40),
|
||||
child: FullscreenableImage(
|
||||
url: site.site.icon,
|
||||
child: CachedNetworkImage(
|
||||
width: 100,
|
||||
height: 100,
|
||||
imageUrl: site.site.icon,
|
||||
errorWidget: (_, __, ___) =>
|
||||
const Icon(Icons.warning),
|
||||
),
|
||||
),
|
||||
child: site.site.icon == null
|
||||
? const SizedBox(height: 100, width: 100)
|
||||
: FullscreenableImage(
|
||||
url: site.site.icon,
|
||||
child: CachedNetworkImage(
|
||||
width: 100,
|
||||
height: 100,
|
||||
imageUrl: site.site.icon,
|
||||
errorWidget: (_, __, ___) =>
|
||||
const Icon(Icons.warning),
|
||||
),
|
||||
),
|
||||
),
|
||||
Text(site.site.name,
|
||||
style: theme.textTheme.headline6),
|
||||
|
|
|
@ -18,9 +18,12 @@ class BottomModal extends StatelessWidget {
|
|||
child: Container(
|
||||
padding: title != null ? const EdgeInsets.only(top: 10) : null,
|
||||
decoration: BoxDecoration(
|
||||
color: theme.scaffoldBackgroundColor,
|
||||
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
||||
),
|
||||
color: theme.scaffoldBackgroundColor,
|
||||
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
||||
border: Border.all(
|
||||
color: Colors.grey.withOpacity(0.5),
|
||||
width: 0.2,
|
||||
)),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
|
|
Loading…
Reference in New Issue