|
|
|
@ -45,10 +45,9 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
|
|
child: Align(
|
|
|
|
|
alignment: Alignment.centerLeft, // 左对齐
|
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
// 导航到MuseumInfoExtendPage
|
|
|
|
|
Navigator.of(context).push(
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) => MuseumInfoExtendPage(),
|
|
|
|
@ -65,7 +64,7 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
|
|
|
|
|
'2012年5月,天津博物馆新馆建成对外开放。',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
color: Colors.black, // 设置文本颜色为黑色
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
),
|
|
|
|
|
textAlign: TextAlign.left,
|
|
|
|
|
),
|
|
|
|
@ -73,7 +72,7 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center, // 将按钮居中
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(width: 20),
|
|
|
|
|
InkWell(
|
|
|
|
@ -94,7 +93,7 @@ class _MuseumInfoPageState extends State<MuseumInfoPage> {
|
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
|
),
|
|
|
|
|
child: Icon(
|
|
|
|
|
Icons.calendar_view_month, // 替换为您想要的图标
|
|
|
|
|
Icons.calendar_view_month,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
size: 40,
|
|
|
|
|
),
|
|
|
|
|