You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansu_ui/lib/buttons/as_back_button.dart

33 lines
829 B

import 'package:ansu_ui/ansu_ui.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
4 years ago
import 'package:get/get.dart';
4 years ago
///安速返回按钮
///
///ASBackButton 黑色返回按钮
///
///ASBackButton.white 白色返回按钮
class ASBackButton extends StatelessWidget {
final Color color;
const ASBackButton({Key key, this.color = kDarkColor}) : super(key: key);
const ASBackButton.white({Key key})
: color = kForegroundColor,
super(key: key);
@override
Widget build(BuildContext context) {
4 years ago
return navigator.canPop()
? IconButton(
icon: Icon(
CupertinoIcons.chevron_back,
size: 24,
color: color,
),
onPressed: () => Navigator.pop(context),
)
: SizedBox();
}
}