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.
27 lines
699 B
27 lines
699 B
4 years ago
|
import 'package:ansu_ui/ansu_ui.dart';
|
||
|
import 'package:flutter/cupertino.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
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) {
|
||
|
return Navigator.canPop(context)
|
||
|
? IconButton(
|
||
|
icon: Icon(
|
||
|
CupertinoIcons.chevron_back,
|
||
|
size: 24,
|
||
|
color: color,
|
||
|
),
|
||
|
onPressed: () => Navigator.pop(context),
|
||
|
)
|
||
|
: SizedBox();
|
||
|
}
|
||
|
}
|