Skip to content

Commit

Permalink
Merge pull request #70 from IamMuuo/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
IamMuuo authored Apr 7, 2024
2 parents 946d5d7 + f9a3056 commit b8e2b98
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

"Academia" is a 📱 mobile app 🎓🏫 exclusively designed for Daystar University students, tailored to streamline their academic experience. With Academia, Daystar students can effortlessly manage their class schedules 🗓️, assignments 📚, exams 📝, grades 📊, and more, all within a single, user-friendly platform. The app harnesses the power of 🚀 Flutter, a versatile mobile app SDK for building high-performance, cross-platform apps for iOS, Android, web, and desktop, all from a unified codebase. 📲

Academia is powered by magnet for scraping data

Academia is powered by magnet for scraping data
## Features 🔥🚀

📅 **Schedule:** Keep track of all your classes and lectures with the built-in calendar.
Expand All @@ -22,7 +22,7 @@ Academia is powered by magnet for scraping data

## Screenshots 📷

![Screenshots of Academia app](screenshots.png)
![Screenshot](screenshots/shot.png)

## Getting Started 🚀

Expand Down
27 changes: 16 additions & 11 deletions lib/tools/exam_timetable/widgets/exam_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,23 @@ class ExamCard extends StatelessWidget {
),
const SizedBox(height: 12),
exam.coordinator != null && exam.invigilator != null
? Row(children: [
const Icon(Ionicons.person_circle),
const SizedBox(width: 4),
Text(
exam.coordinator.toString(),
? Column(children: [
Row(
children: [
Text(
"Coordiator: ${exam.coordinator.toString().title()}",
),
],
),
const SizedBox(height: 12),
Row(
children: [
Text(
"Invigilator ${exam.invigilator.toString().title()}",
overflow: TextOverflow.ellipsis,
)
],
),
const Spacer(),
const Icon(Ionicons.people_circle),
const SizedBox(width: 4),
Text(
exam.coordinator.toString(),
)
])
: const SizedBox()
],
Expand Down
Binary file added screenshots/shot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b8e2b98

Please sign in to comment.