1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-19 13:00:41 +01:00

12 lines
308 B
Dart
Raw Normal View History

2022-09-17 20:35:45 +08:00
import 'package:flutter/widgets.dart';
2019-02-10 12:16:52 +08:00
class EmptyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
2022-09-07 00:28:12 +08:00
padding: const EdgeInsets.symmetric(vertical: 50),
child: const Center(child: Text('Empty', style: TextStyle(fontSize: 18))),
2019-02-10 12:16:52 +08:00
);
}
}