mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-12 02:06:17 -05:00
12 lines
308 B
Dart
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))),
|
|
);
|
|
}
|
|
}
|