|
|
|
@ -1,7 +1,9 @@
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'CollectionListPage.dart';
|
|
|
|
|
import 'MapPage.dart';
|
|
|
|
|
import 'MuseumInfoExtendPage.dart';
|
|
|
|
|
import 'ServicePage.dart';
|
|
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
runApp(MaterialApp(
|
|
|
|
|
home: MuseumInfoPage(),
|
|
|
|
@ -92,6 +94,13 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
_buildCustomButton('地图', 45, 40, () {
|
|
|
|
|
Navigator.of(context).push(
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) => MapPage(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|