59 lines
1.9 KiB
Dart
59 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:geojson/geojson.dart';
|
|
|
|
class BottomSheetWidget extends StatelessWidget {
|
|
//const BottomSheetWidget({ Key? key }, GeoJsonFeature? pt) : super(key: key);
|
|
|
|
GeoJsonFeature? pt;
|
|
|
|
BottomSheetWidget({this.pt});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SingleChildScrollView(
|
|
child: Padding(
|
|
padding: EdgeInsets.only(
|
|
bottom: MediaQuery.of(context).viewInsets.bottom,
|
|
),
|
|
child: Container(
|
|
alignment: Alignment.topLeft,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(20.0),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Column(
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Expanded(
|
|
child: Container(
|
|
height: 35.0,
|
|
alignment: Alignment.center,
|
|
color: Colors.black12,
|
|
child: Text(pt!.properties!["location_name"], style: TextStyle(
|
|
fontSize: 18.0,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
IconButton(
|
|
onPressed:(){
|
|
//homeController.incidents.remove(incident);
|
|
Navigator.pop(context);
|
|
//popupController.hideAllPopups();
|
|
},
|
|
icon: Icon(Icons.delete_outlined)
|
|
)
|
|
],
|
|
),
|
|
],
|
|
),
|
|
)
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |