2022-12-19 14:13:25 -07:00
|
|
|
import 'package:wonders/common_libs.dart';
|
|
|
|
|
|
|
|
class PopNavigatorUnderlay extends StatelessWidget {
|
2024-02-20 13:56:39 -08:00
|
|
|
const PopNavigatorUnderlay({super.key});
|
2022-12-19 14:13:25 -07:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return ExcludeSemantics(
|
|
|
|
child: AppBtn.basic(
|
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
|
|
semanticLabel: '',
|
|
|
|
child: const SizedBox.expand(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|