This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| body: Stack( | |
| alignment: Alignment.center, | |
| children: [ | |
| SplashScreenLogo(), | |
| SafeArea( | |
| child: Padding( | |
| padding: const EdgeInsets.all(20.0), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_map/plugin_api.dart'; | |
| import 'package:latlong/latlong.dart'; | |
| const kMarker = "https://www.sccpre.cat/png/big/16/164026_map-marker-png.png"; | |
| class MapScreen extends StatefulWidget { | |
| MapScreen({Key key}) : super(key: key); | |
| _MapScreenState createState() => _MapScreenState(); |