17 lines
458 B
Dart
17 lines
458 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
/// Phase 1: online POS shell. Phase 2: Drift cart + sync queue + bluetooth_print.
|
||
|
|
class PosScreen extends StatelessWidget {
|
||
|
|
const PosScreen({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return Scaffold(
|
||
|
|
appBar: AppBar(title: const Text('صندوق')),
|
||
|
|
body: const Center(
|
||
|
|
child: Text('POS — منو و سبد در فاز بعدی (Drift + API)'),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|