Skip to content

Commit

Permalink
feat: Add QR-code to site
Browse files Browse the repository at this point in the history
  • Loading branch information
spydon committed Jul 5, 2023
1 parent 06d8193 commit b177735
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Binary file added assets/images/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions lib/lobby/view/lobby_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,20 @@ class _LobbyPageState extends State<LobbyPage> {
),
],
),
const Center(
Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
const Text(
'Waiting for',
style: centerTextStyle,
),
Text(
const Text(
'players...',
style: centerTextStyle,
),
const SizedBox(height: 50),
Image.asset('assets/images/qr.png'),
],
),
),
Expand Down Expand Up @@ -336,7 +338,7 @@ class _PlayerIdentificationState extends State<PlayerIdentification> {
style: TextStyle(
fontFamily: GoogleFonts.bungee().fontFamily,
color: Colors.white,
fontSize: 28.0,
fontSize: 38.0,
decoration: _cursor == i
? TextDecoration.underline
: TextDecoration.none,
Expand Down

0 comments on commit b177735

Please sign in to comment.