init: rough companion app stub

This commit is contained in:
2026-05-07 18:35:58 +02:00
commit 5f017ac05d
73 changed files with 3520 additions and 0 deletions
@@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
class StepFloorPlan extends StatelessWidget {
const StepFloorPlan({super.key, required this.onComplete});
final VoidCallback onComplete;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(24),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text('Draw floor plan',
style: Theme.of(context).textTheme.titleLarge),
const SizedBox(height: 16),
// TODO: embed KonvaWebView in editor mode (no live overlays).
// User draws rooms, sets scale, then taps Continue.
const Expanded(child: Placeholder()),
const SizedBox(height: 16),
FilledButton(
onPressed: onComplete,
child: const Text('Continue'),
),
],
),
);
}
}