실시간 출석 현황과 같은 톤으로, 설정/교사 회원가입/관리자 시스템/ NFC 태그 쓰기·체크인/학생 통합 관리 센터/스마트기기 반출 신청·대장 화면의 검정 배경 AppBar를 투명 배경 + 가운데 둥근 제목 알약으로 교체. 출석 현황 화면과 달리 폰트 크기는 줄이지 않고 각 화면이 원래 쓰던 스타일(굵기 등)을 그대로 유지 - 공용 TitlePill 위젯이 스타일링된 Text를 그대로 감싸주기만 함. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
23 lines
713 B
Dart
23 lines
713 B
Dart
// 🪶 검정 AppBar 대신 쓰는 둥근 제목 알약. 실시간 출석 현황 화면과 톤을 맞추되,
|
|
// 크기는 줄이지 않고 각 화면이 원래 쓰던 폰트 스타일을 그대로 넘겨받는다.
|
|
import 'package:flutter/material.dart';
|
|
import '../theme/app_palette.dart';
|
|
|
|
class TitlePill extends StatelessWidget {
|
|
final Widget child;
|
|
|
|
const TitlePill({super.key, required this.child});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 10),
|
|
decoration: BoxDecoration(
|
|
color: AppPalette.ink,
|
|
borderRadius: BorderRadius.circular(999),
|
|
),
|
|
child: child,
|
|
);
|
|
}
|
|
}
|