Advertisement
FlyFar

lib/widgets/error_display.dart

Jul 25th, 2023
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.20 KB | Cybersecurity | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. import 'coolText.dart';
  4.  
  5. String error = "Error";
  6.  
  7. final showError = SnackBar(
  8.   content: coolText(text : "An Error Occurred: $error", fontSize: 10),
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement