Nuestro grupo de redactores ha estado mucho tiempo investigando la solución a tus dudas, te dejamos la resolución por esto esperamos servirte de mucha ayuda.
Ejemplo 1: oculta el aleteo del botón Atrás
appBar: AppBar(
title: Text("App Bar without Back Button"),
automaticallyImplyLeading: false,
),
Ejemplo 2: eliminar el botón Atrás en la barra de aplicaciones en flutter
import 'package:flutter/material.dart';
class LogoutPage extends StatelessWidget
@override
Widget build(BuildContext context)
return new Scaffold(
appBar: new AppBar(
title: new Text("Logout Page"),
),
body: new Center(
child: new Text('You have been logged out'),
),
);
class MyHomePage extends StatelessWidget
@override
Widget build(BuildContext context)
return new Scaffold(
appBar: new AppBar(
title: new Text("Remove Back Button"),
),
floatingActionButton: new FloatingActionButton(
child: new Icon(Icons.fullscreen_exit),
onPressed: ()
Navigator.pushReplacementNamed(context, "/logout");
,
),
);
void main()
runApp(new MyApp());
class MyApp extends StatelessWidget
@override
Widget build(BuildContext context)
return new MaterialApp(
title: 'Flutter Demo',
home: new MyHomePage(),
routes:
"/logout": (_) => new LogoutPage(),
,
);
Comentarios y calificaciones
Si tienes algún reparo y forma de reformar nuestro división eres capaz de realizar una nota y con gusto lo observaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)