My class is not showing the back button in the AppBar,
Already try put 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); } }
Anonymous Asked question May 14, 2021
Recent Comments