ponshu-room-lite/lib/screens/features/placeholders.dart

35 lines
718 B
Dart

import 'package:flutter/material.dart';
export 'brewery_map_screen.dart';
export 'sommelier_screen.dart';
export '../scan_screen.dart';
// ScanARScreen moved to ../scan_screen.dart and exported above
class InstaSupportScreen extends StatelessWidget {
const InstaSupportScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text('インスタ販促支援 (Coming Soon)')),
);
}
}
class AnalyticsScreen extends StatelessWidget {
const AnalyticsScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text('売上・在庫分析 (Coming Soon)')),
);
}
}