HanJiaHui_Branch
黎超凡 2 years ago
parent 972446da17
commit ad4f76f0b5

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"sqflite","dependencies":[]}],"date_created":"2023-11-10 19:52:28.622726","version":"3.13.3"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"sqflite","path":"C:\\\\Users\\\\17651\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite-2.3.0\\\\","native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"sqflite","dependencies":[]}],"date_created":"2023-11-10 20:11:18.083982","version":"3.13.3"}

File diff suppressed because one or more lines are too long

@ -22,7 +22,7 @@ class MuseumInfoExtendPage extends StatelessWidget {
'《中华百年看天津》(近代天津)和《耀世奇珍——馆藏文物精品陈列》,'
'重点展示天津在中国近代化进程中的历史意义和重要地位,以及中华民族在数千年文明进程中积淀的丰厚物质遗存。'
'2012年新馆开馆之际依托天津博物馆历代艺术品收藏系统丰富的特色'
'特别策划展出书法、绘画、瓷器、玉器、吉祥文化、文房清供、民间艺术等8个文物艺术品专题陈列。'
'特别策划展出书法、绘画、瓷器、玉器、吉祥文化、文房清供、民间艺术等8个文物艺术品专题陈列。\n'
,
style: TextStyle(
fontSize: 18,

@ -47,20 +47,31 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
alignment: Alignment.centerLeft,
child: InkWell(
onTap: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => MuseumInfoExtendPage(),
),
showModalBottomSheet(
isScrollControlled: true,
context: context,
builder: (context) {
return Container(
height: MediaQuery.of(context).size.height * 0.6, // 60%
child: SingleChildScrollView(
child: Container(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
Text(
'这是底部弹窗的内容。' * 100,
style: TextStyle(fontSize: 18),
),
],
),
),
),
);
},
);
},
child: Text(
' 天津博物馆位于天津市河西区平江道62号'
'是展示中国古代艺术及天津城市发展历史的大型艺术历史类综合性博物,'
'是天津地区最大的集收藏、保护、研究、陈列、教育为一体的大型公益性文化机构和对外文化交流的窗口。\n'
' 天津博物馆的前身可追溯至民国七年1918年6月1日正式成立了天津博物院'
'2004年由原天津市艺术博物馆和天津市历史博物馆合并组建2007年底天津博物馆旧馆对外免费开放'
'2008年天津博物馆新馆开工建设'
'2012年5月天津博物馆新馆建成对外开放。',
' 天津博物馆位于天津市河西区平江道62号...',
style: TextStyle(
fontSize: 16.5,
color: Colors.black,
@ -68,6 +79,7 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
textAlign: TextAlign.left,
),
),
),
),
Row(

Loading…
Cancel
Save