fromis_9/app/lib/views/album/album_view.dart

43 lines
974 B
Dart
Raw Normal View History

/// 앨범 화면
library;
import 'package:flutter/material.dart';
import '../../core/constants.dart';
class AlbumView extends StatelessWidget {
const AlbumView({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.album_outlined,
size: 64,
color: AppColors.textTertiary,
),
SizedBox(height: 16),
Text(
'앨범',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: AppColors.textSecondary,
),
),
SizedBox(height: 8),
Text(
'앨범 화면 준비 중',
style: TextStyle(
fontSize: 14,
color: AppColors.textTertiary,
),
),
],
),
);
}
}