This commit is contained in:
2026-04-07 11:30:22 +02:00
parent 4bbd1edf48
commit 130780cbb8
20 changed files with 426 additions and 131 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class CreateStoreScreen extends StatelessWidget {
const CreateStoreScreen({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}