Show current user details/permissions in about panel
This commit is contained in:
parent
42b4052a68
commit
82363aa06b
|
|
@ -928,8 +928,14 @@ void _showAbout(BuildContext context) async {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
SizedBox(height: 8),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.all(0),
|
||||||
|
title: Text(state.user.fullName),
|
||||||
|
subtitle: Text(state.user.email),
|
||||||
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 24),
|
padding: const EdgeInsets.only(top: 8),
|
||||||
child: RichText(
|
child: RichText(
|
||||||
text: TextSpan(
|
text: TextSpan(
|
||||||
children: <TextSpan>[
|
children: <TextSpan>[
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue