【发布时间】:2021-01-25 01:33:04
【问题描述】:
小部件构建(BuildContext 上下文){ 返回脚手架( 应用栏:应用栏( 标题:文本('选择路线'), ), 正文:列表视图( 孩子们: [ 列表瓦片( 领先:图标(Icons.map), 标题:文本('起源:Calinan'), subtitle: Text('Destination: Roxas'), 尾随:图标按钮( 图标:图标(Icons.arrow_forward), 按下:(){ 导航器.push(上下文, MaterialPageRoute(builder: (context) => Map()));
})),
ListTile(
leading: Icon(Icons.map),
title: Text('Map'),
trailing: IconButton(
icon: Icon(Icons.arrow_forward),
onPressed: () {
Navigator.push(context,
MaterialPageRoute(builder: (context) => Map()));
})),
ListTile(
leading: Icon(Icons.map),
title: Text('Map'),
trailing: IconButton(
icon: Icon(Icons.arrow_forward),
onPressed: () {
Navigator.push(context,
MaterialPageRoute(builder: (context) => Map()));
})),
],
),
);
}
【问题讨论】:
标签: google-maps flutter