18 lines
459 B
Dart
Raw Normal View History

2023-07-10 17:50:31 +08:00
import 'package:flutter/cupertino.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class NoData extends StatelessWidget {
2023-07-15 15:11:28 +08:00
const NoData({Key? key}) : super(key: key);
2023-07-10 17:50:31 +08:00
@override
Widget build(BuildContext context) {
return SizedBox(
width: 1.sw,
height: 1.sh - ScreenUtil().statusBarHeight,
child: Center(
child: Image.asset('images/icon_unHaveData.png',width: 300.w,height: 240.w),
2023-07-10 17:50:31 +08:00
),
);
}
}