17 lines
408 B
Dart
17 lines
408 B
Dart
|
import 'package:wonders/common_libs.dart';
|
||
|
|
||
|
class PopNavigatorUnderlay extends StatelessWidget {
|
||
|
const PopNavigatorUnderlay({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return ExcludeSemantics(
|
||
|
child: AppBtn.basic(
|
||
|
onPressed: () => Navigator.of(context).pop(),
|
||
|
semanticLabel: '',
|
||
|
child: const SizedBox.expand(),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|