Skip to content

Commit

Permalink
Adjusted the colors and theme according to the application
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaymehrotra committed Jan 24, 2024
1 parent c7ad53b commit 961a3ef
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/Screens/OmUI/mark_presence_screen.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:gdsc_ui_design/utils/app_styles.dart';
import 'package:qr_flutter/qr_flutter.dart';

class MarkPresence extends StatefulWidget {
Expand Down Expand Up @@ -30,7 +31,7 @@ class _MarkPresenceState extends State<MarkPresence> {
hintText: 'Type here',
// prefixIcon: Icon(Icons.text_fields),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(8.0),
borderRadius: BorderRadius.circular(8.0)
),
),
),
Expand All @@ -42,7 +43,9 @@ class _MarkPresenceState extends State<MarkPresence> {
});
},
style: ElevatedButton.styleFrom(
fixedSize: const Size.fromHeight(50.0)),
fixedSize: const Size.fromHeight(50.0),
backgroundColor: kBlue,
),
child: const Text('Generate QR Code'),
),
const SizedBox(height: 26.0),
Expand Down

0 comments on commit 961a3ef

Please sign in to comment.