Skip to content

Commit

Permalink
Merge pull request #29 from ACM-JUIT/Dev-Aditya
Browse files Browse the repository at this point in the history
Fixed minor texts
  • Loading branch information
Adityak215 authored Jul 31, 2024
2 parents 840ad80 + 9c4fb94 commit e5b6965
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
Binary file modified Omnia (1.0.5-beta).apk
Binary file not shown.
13 changes: 9 additions & 4 deletions lib/Resources/reportbug.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,23 +116,23 @@ class _ReportBugState extends State<ReportBug> {
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
const SizedBox(height: 16),
const SizedBox(height: 40),
const SizedBox(height: 16),
_buildTextField(_titleController, 'Title'),
const SizedBox(height: 16),
_buildTextField(_bugController, 'Bug Description', maxLines: 4),

const SizedBox(height: 16),
ElevatedButton(
onPressed: _report,
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.blue,
backgroundColor: itemColor,
padding: const EdgeInsets.symmetric(horizontal: 30, vertical: 10),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
),
child: const Text('Save'),
child: const Text('Report'),
),
]
),
Expand All @@ -148,10 +148,15 @@ class _ReportBugState extends State<ReportBug> {
labelText: label,
labelStyle: const TextStyle(color: Colors.white),
border: OutlineInputBorder(
borderSide: const BorderSide(color: itemColor),
borderRadius: BorderRadius.circular(10),
),
filled: true,
fillColor: Colors.white.withOpacity(0.1),
disabledBorder: OutlineInputBorder(
borderSide: const BorderSide(color: navColor),
borderRadius: BorderRadius.circular(10),
),
enabledBorder: OutlineInputBorder(
borderSide: const BorderSide(color: Colors.white),
borderRadius: BorderRadius.circular(10),
Expand Down
2 changes: 1 addition & 1 deletion lib/Screens/Work/Projects/projects.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class _ProjectState extends State<Project> {
barrierDismissible: true, // Allow closing the popup by tapping outside
builder: (BuildContext context) {
return AlertDialog(
title: const Center(child: Text("Upcoming Soon")),
title: const Center(child: Text("Coming Soon")),
actions: [
Center(
child: TextButton(
Expand Down
2 changes: 1 addition & 1 deletion lib/Screens/Work/Resources/reso.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class _ResoState extends State<Reso> {
barrierDismissible: true, // Allow closing the popup by tapping outside
builder: (BuildContext context) {
return AlertDialog(
title: const Center(child: Text("Upcomig Soon")),
title: const Center(child: Text("Coming Soon")),
actions: [
TextButton(
onPressed: () {
Expand Down

0 comments on commit e5b6965

Please sign in to comment.