This commit is contained in:
2026-03-07 17:24:59 +08:00
parent 4418ebecac
commit b0ec8ab4bd
417 changed files with 42546 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:flutter_dmzj/app/app_constant.dart';
class EmptyPage extends StatelessWidget {
const EmptyPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MediaQuery.of(context).size.width <= AppConstant.kTabletWidth
? Container()
: Scaffold(
resizeToAvoidBottomInset: false,
body: Center(
child: Image.asset(
"assets/images/logo_dmzj.png",
height: 80,
),
),
);
}
}