system_pop_app_bar.dart 567 B

123456789101112131415161718192021
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/services.dart' show SystemNavigator;
  3. AppBar systemPopAppBar(String title, {List<Widget> actions = const []}) {
  4. return AppBar(
  5. title: Container(
  6. margin: const EdgeInsets.symmetric(vertical: 1.0, horizontal: 1.0),
  7. child: Row(
  8. children: <Widget>[
  9. IconButton(
  10. icon: const Icon(Icons.close),
  11. onPressed: () {
  12. SystemNavigator.pop();
  13. }),
  14. Text(title),
  15. ],
  16. ),
  17. ),
  18. actions: actions,
  19. );
  20. }