import 'package:flutter/material.dart'; class ShopScreen extends StatelessWidget { const ShopScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: const SafeArea( child: Center( child: Text( '상점 화면 준비 중입니다.', style: TextStyle(fontFamily: 'SCDream'), ), ), ), ); } }