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:
22
lib/screens/list_property/property_address.dart
Normal file
22
lib/screens/list_property/property_address.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
Widget buildSecondPage(
|
||||
TextEditingController addressController,
|
||||
void Function() nextPage,
|
||||
) {
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
TextFormField(
|
||||
controller: addressController,
|
||||
decoration: const InputDecoration(labelText: 'Property Address'),
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
const Spacer(),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [TextButton(onPressed: nextPage, child: const Text("Next"))],
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user