그룹 상세: 멤버를 타일 그리드로, 공부 시간순 정렬, 백품타 바로가기 추가

가로로 길게 늘어지던 멤버 목록을 학생 계정관리 화면 같은 타일
그리드로 바꾸고, 오늘 공부 시간이 많은 순으로 정렬(백엔드).
화면 폭도 다른 화면들처럼 최대 560으로 제한. "백품타 바로가기"
버튼으로 그룹 화면에서 바로 공부 타이머로 이동 가능.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-22 03:58:21 +00:00
co-authored by Claude Sonnet 5
parent 4f64315197
commit f5aa832ad9
3 changed files with 124 additions and 40 deletions
+4
View File
@@ -11,11 +11,13 @@ import 'title_pill.dart';
class GroupListScreen extends StatefulWidget {
final String studentId;
final String studentName;
final int? grade;
const GroupListScreen({
super.key,
required this.studentId,
required this.studentName,
this.grade,
});
@override
@@ -127,6 +129,8 @@ class _GroupListScreenState extends State<GroupListScreen> {
groupId: group['groupId'] as int,
groupName: group['name'] as String,
studentId: widget.studentId,
studentName: widget.studentName,
grade: widget.grade,
),
);
_controller.refresh();