This commit is contained in:
Mrdabup 2024-10-11 10:12:34 -04:00
parent 8b6f5bc00c
commit 38a277348f

View file

@ -143,6 +143,22 @@ class _SessionViewState extends State<SessionView> {
leadingText: "Details:",
showLine: false,
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"Host: ",
style: Theme.of(context).textTheme.labelLarge,
),
Text(
session.hostUsername,
style: Theme.of(context).textTheme.labelLarge,
),
],
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Row(