Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: spacing issues #894

Merged
merged 1 commit into from
Jan 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions lib/screens/settings/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,16 @@ class _SettingsScreenState extends State<SettingsScreen> {
),
const Divider(),
ListTile(
title: const Text('RealtimeChat is open source!'),
subtitle: const Text("Find us on GitHub!"),
trailing: const Icon(Icons.terminal),
onTap: () => openUrl(Uri.parse("https://github.com/muxable/rtchat")),
title: const Text('RealtimeChat is open source!'),
subtitle: const Text("Find us on GitHub!"),
trailing: const Icon(Icons.terminal),
onTap: () =>
openUrl(Uri.parse("https://github.com/muxable/rtchat")),
),
ListTile(
title: const Text('Muxable Discord'),
subtitle: const Text("Join the Muxable Discord!"),
trailing: const Icon(Icons.launch),
title: const Text('Muxable Discord'),
subtitle: const Text("Join the Muxable Discord!"),
trailing: const Icon(Icons.launch),
onTap: () => openUrl(Uri.parse("https://discord.gg/UKHJMQs74u")),
),
Padding(
Expand Down