선생님 정상 로그인 시 대시보드 이름 표시 버그 수정 + 앱 버전 1.1.4

- 로그인 성공 후 TeacherDashboard로 이동할 때 실제 이름/학번을 안 넘겨줘서
  항상 "간편인증 선생"으로 표시되던 문제 수정
This commit is contained in:
2026-08-05 14:01:50 +09:00
parent d864927957
commit 4e12b279e2
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -308,7 +308,10 @@ class _LoginScreenState extends State<LoginScreen> {
if (role == 'teacher') { if (role == 'teacher') {
Navigator.pushReplacement( Navigator.pushReplacement(
context, context,
MaterialPageRoute(builder: (context) => const TeacherDashboard()), MaterialPageRoute(
builder: (context) =>
TeacherDashboard(teacherId: studentId, teacherName: name),
),
); );
} else if (role == 'admin') { } else if (role == 'admin') {
Navigator.pushReplacement( Navigator.pushReplacement(
+1 -1
View File
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
version: 1.1.3+4 version: 1.1.4+5
environment: environment:
sdk: ^3.12.2 sdk: ^3.12.2