Add Dialog with Pageview to select new house, and then drop a pin where the house is, then zoom map to that area.

This commit is contained in:
2025-04-20 20:36:13 -07:00
parent 9170fffdf8
commit dd9d1a67ab
19 changed files with 1581 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
Widget buildFirstPage(void Function() nextPage) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
const Text("Let's add a new property"),
const SizedBox(height: 20),
const Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [TextButton(onPressed: nextPage, child: const Text("Next"))],
),
],
);
}