42 lines
978 B
Dart
42 lines
978 B
Dart
/// 멤버 화면
|
|
library;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import '../../core/constants.dart';
|
|
|
|
class MembersView extends StatelessWidget {
|
|
const MembersView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
Icons.people_outline,
|
|
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,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|