@@ -60,6 +60,7 @@ import 'package:lexeapp/style.dart'
6060 show Fonts, LxColors, LxIcons, LxRadius, Space;
6161import 'package:lexeapp/types.dart' show BalanceKind, BalanceState;
6262import 'package:lexeapp/uri_events.dart' show UriEvents;
63+ import 'package:lexeapp/url.dart' as url;
6364
6465class WalletPage extends StatefulWidget {
6566 const WalletPage ({
@@ -688,6 +689,35 @@ class WalletDrawer extends StatelessWidget {
688689 // ),
689690 // const SizedBox(height: Space.s600),
690691
692+ // Social media links row
693+ Row (
694+ mainAxisAlignment: MainAxisAlignment .center,
695+ spacing: Space .s100,
696+ children: [
697+ IconButton (
698+ onPressed: () => url.open ("https://lexe.app" ),
699+ icon: const Icon (LxIcons .website, size: Fonts .size600),
700+ color: LxColors .foreground,
701+ ),
702+ IconButton (
703+ onPressed: () => url.open ("https://x.com/lexeapp" ),
704+ icon: const Icon (LxIcons .twitter, size: Fonts .size600),
705+ color: LxColors .foreground,
706+ ),
707+ IconButton (
708+ onPressed: () => url.open ("https://discord.gg/zybuBYgdbr" ),
709+ icon: const Icon (LxIcons .discord, size: Fonts .size600),
710+ color: LxColors .foreground,
711+ ),
712+ IconButton (
713+ onPressed: () => url.open ("https://github.com/lexe-app" ),
714+ icon: const Icon (LxIcons .github, size: Fonts .size600),
715+ color: LxColors .foreground,
716+ ),
717+ ],
718+ ),
719+ const SizedBox (height: Space .s400),
720+
691721 // Show currently installed app version.
692722 // ex: "Lexe · v0.6.2+5"
693723 FutureBuilder (
0 commit comments