1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-16 03:20:58 +01:00
2022-09-17 20:35:45 +08:00

12 lines
308 B
Dart

import 'package:flutter/widgets.dart';
class EmptyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(vertical: 50),
child: const Center(child: Text('Empty', style: TextStyle(fontSize: 18))),
);
}
}