Initial commit: Penyerahan final Source code Tugas Akhir

This commit is contained in:
ferdiakhh
2025-07-10 19:15:14 +07:00
commit e1f2206b8a
687 changed files with 80132 additions and 0 deletions

View File

@ -0,0 +1,41 @@
import 'package:flutter/foundation.dart';
class SectionLessonProvider with ChangeNotifier {
bool isExpanded;
bool isCheckBoxLesson;
bool isOutcomes;
bool isDescription;
bool isDescriptionInstruktur;
SectionLessonProvider({
this.isExpanded = true,
this.isCheckBoxLesson = false,
this.isOutcomes = false,
this.isDescription = true,
this.isDescriptionInstruktur = false,
});
void expanded() {
isExpanded = !isExpanded;
notifyListeners();
}
void checkBoxLesson() {
isCheckBoxLesson = !isCheckBoxLesson;
notifyListeners();
}
void detailPlayCourseOutcomes() {
isOutcomes = !isOutcomes;
notifyListeners();
}
void descriptionPlayCourse() {
isDescription = !isDescription;
notifyListeners();
}
void descriptionInstrukturPlayCourse() {
isDescriptionInstruktur = !isDescriptionInstruktur;
notifyListeners();
}
}