24 lines
641 B
Dart
24 lines
641 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:tallee/presentation/widgets/buttons/haptic_icon_button.dart';
|
|
|
|
class HapticBackButton extends StatelessWidget {
|
|
const HapticBackButton({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final iconData = switch (defaultTargetPlatform) {
|
|
TargetPlatform.iOS ||
|
|
TargetPlatform.macOS => Icons.arrow_back_ios_new_rounded,
|
|
_ => Icons.arrow_back_rounded,
|
|
};
|
|
|
|
return HapticIconButton(
|
|
icon: Icon(iconData),
|
|
onPressed: () async {
|
|
Navigator.of(context).maybePop();
|
|
},
|
|
);
|
|
}
|
|
}
|