Add contact portal links

This commit is contained in:
Hillel Coren 2020-09-29 21:00:47 +03:00
parent 17f8b42caf
commit 1809688945
1 changed files with 6 additions and 3 deletions

View File

@ -30,9 +30,12 @@ class AppListTile extends StatelessWidget {
leading: Icon(icon),
title: Text(title),
subtitle: buttons != null
? Row(
children: buttons,
)
? Padding(
padding: const EdgeInsets.only(top: 8),
child: Row(
children: buttons,
),
)
: (subtitle == null ? Container() : Text(subtitle)),
dense: dense,
onTap: onTap,