Skip to content

Commit

Permalink
feat: make things bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
renancaraujo committed Jul 5, 2023
1 parent b177735 commit a992007
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions lib/lobby/view/lobby_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class _LobbyPageState extends State<LobbyPage> {
Widget build(BuildContext context) {
const centerTextStyle = TextStyle(
color: GamePalette.lightBlue,
fontSize: 48.0,
fontSize: 68.0,
fontWeight: FontWeight.bold,
);

Expand Down Expand Up @@ -128,7 +128,10 @@ class _LobbyPageState extends State<LobbyPage> {
style: centerTextStyle,
),
const SizedBox(height: 50),
Image.asset('assets/images/qr.png'),
Image.asset(
'assets/images/qr.png',
width: 600,
),
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/shaders/crt.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class CRTShader extends StatelessWidget {
value
..setSize(size)
..setFloat(1)
..setVector(Vector2(2, 3));
..setVector(Vector2(3, 4));
})
..setImageSampler(0, pixelTexture)
..setImageSampler(1, image);
Expand Down

0 comments on commit a992007

Please sign in to comment.