Copy old project - initial state

This commit is contained in:
2025-01-07 15:19:59 +01:00
parent cae841f0e5
commit afad23ca20
202 changed files with 17563 additions and 0 deletions
@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:terepi_seged/pages/property_list/presentations/controllers/property_list_controller.dart';
class PropertyListView extends GetView<PropertyListController> {
const PropertyListView({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}