-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #319 from lahirulakruwan/main
Daily duty attendance report changes added
- Loading branch information
Showing
9 changed files
with
818 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
campus/frontend/lib/avinya/attendance/lib/screens/daily_duty_attendance_report.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter/widgets.dart'; | ||
import 'package:gallery/avinya/attendance/lib/widgets/daily_duty_attendance_report.dart'; | ||
|
||
class DailyDutyAttendanceReportScreen extends StatefulWidget { | ||
const DailyDutyAttendanceReportScreen({super.key}); | ||
|
||
@override | ||
State<DailyDutyAttendanceReportScreen> createState() => _DailyDutyAttendanceReportScreenState(); | ||
} | ||
|
||
class _DailyDutyAttendanceReportScreenState extends State<DailyDutyAttendanceReportScreen> { | ||
|
||
@override | ||
void dispose() { | ||
super.dispose(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
automaticallyImplyLeading: false, | ||
title: Text("Daily Duty Attendance Report"), | ||
), | ||
body: SingleChildScrollView( | ||
child: Container( | ||
child: DailyDutyAttendanceReport(), | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.