mirror of
https://github.com/git-touch/git-touch
synced 2024-12-15 09:56:15 +01:00
12 lines
297 B
Dart
12 lines
297 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class EmptyWidget extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: EdgeInsets.symmetric(vertical: 50),
|
|
child: Center(child: Text('Empty', style: TextStyle(fontSize: 18))),
|
|
);
|
|
}
|
|
}
|