Release 0.0.3 Main Merge #3

Merged
ThatOneJackalGuy merged 27 commits from dev into main 2024-10-17 18:43:25 -04:00
Showing only changes of commit 38a277348f - Show all commits

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(