Guest User

noInternet.dart

a guest
Jun 18th, 2021
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.25 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class NoInternet extends StatelessWidget {
  4.   @override
  5.   Widget build(BuildContext context) {
  6.     return Container(
  7.       child: Center(
  8.         child: Text("No Internet status"),
  9.       ),
  10.     );
  11.   }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment