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