|
|
@ -42,24 +42,26 @@ class _ChoseMap extends State<ChoseMap> {
|
|
|
|
height: media.height * 0.1,
|
|
|
|
height: media.height * 0.1,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
RoundButton(
|
|
|
|
RoundButton(
|
|
|
|
title: "Use map with google map",
|
|
|
|
title: "Use map with google map",
|
|
|
|
onPressed: () {
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.push(
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => const MobileMyMaps()));
|
|
|
|
builder: (context) => const MobileMyMaps()));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(
|
|
|
|
SizedBox(
|
|
|
|
height: media.height * 0.03,
|
|
|
|
height: media.height * 0.03,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
RoundButton(
|
|
|
|
RoundButton(
|
|
|
|
title : "Use map with Open Street Map",
|
|
|
|
title: "Use map with Open Street Map",
|
|
|
|
onPressed: () {
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.push(context,
|
|
|
|
Navigator.push(
|
|
|
|
MaterialPageRoute(builder: (context) => const MyMapOSM()));
|
|
|
|
context,
|
|
|
|
},
|
|
|
|
MaterialPageRoute(
|
|
|
|
),
|
|
|
|
builder: (context) => const MyMapOSM()));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
),
|
|
|
|
Spacer(),
|
|
|
|
Spacer(),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
@ -67,18 +69,5 @@ class _ChoseMap extends State<ChoseMap> {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
return Scaffold(
|
|
|
|
|
|
|
|
backgroundColor: TColor.white,
|
|
|
|
|
|
|
|
body: SafeArea(
|
|
|
|
|
|
|
|
child: Column(
|
|
|
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const Text(
|
|
|
|
|
|
|
|
"Mettre une image la en mode une personne avec des jumelles")
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
)),
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|