void showEscapeSnack(BuildContext context) { ScaffoldMessenger.of(context).showSnackBar( SnackBar( content: const Text( 'خطر', style: TextStyle(fontWeight: FontWeight.bold, color: Colors.redAccent), ), action: SnackBarAction( label: ' يحمااااااااااااااااااااااااااااااااااااااااااااااار هيقتلوك إهرب', onPressed: () { ScaffoldMessenger.of(context).hideCurrentSnackBar(); }, ), backgroundColor: Colors.black87, behavior: SnackBarBehavior.floating, ), ); }