我的班级没有在AppBar中显示后退按钮,
已经尝试将this.automaticallyImplyLeading = true,
import 'package:carros/pages/carro/carro.dart';
import 'package:flutter/material.dart';
class CarroPage extends StatelessWidget {
Carro carro;
CarroPage(this.carro);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(carro.nome),
),
body: _body(),
);
}
_body() {
return Image.network(carro.urlFoto);
}
}
答案 0 :(得分:1)
我使用了此解决方案,它对我有用,请在AppBar中添加行首:
appBar: AppBar(
backgroundColor: Colors.white,
elevation: 0.0,
titleSpacing: 10.0,
centerTitle: true,
leading: InkWell(
onTap: () {
Navigator.pop(context);
},
child: Icon(
Icons.arrow_back_ios,
color: Colors.black54,
),
),
)
答案 1 :(得分:0)
尝试制作自己的后退按钮:
appBar: AppBar(
leading: IconButton(
icon: Icon(Icons.arrow_back_ios),
iconSize: 20.0,
onPressed: () {
_goBack(context);
},
),
centerTitle: true,
title: Text('carro.nome')),
和_goBack方法:
_goBack(BuildContext context) {
Navigator.pop(context);
}
答案 2 :(得分:0)
为了得到后退键,进入那个页面的部分是“Navigator.pushNamed (context, '/brand new');” 例如,它应该是形式。