Files
FlutterUnit/lib/components/project/no_more_widget.dart
2022-03-26 16:41:34 +08:00

18 lines
338 B
Dart

import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020/11/25
/// contact me by email 1981462002@qq.com
/// 说明:
class NoMoreWidget extends StatelessWidget {
const NoMoreWidget({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const SizedBox(height: 56);
}
}