mobile_skt/lib/screens/inventory_inout/inventory_inout.dart

29 lines
842 B
Dart
Raw Normal View History

2024-10-16 09:48:17 +08:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:sk_base_mobile/screens/inventory_inout/components/task_page_holder.dart';
import 'package:sk_base_mobile/screens/inventory_inout/components/upper_body.dart';
import 'inventory_inout_controller.dart';
class InvenotryInoutPage extends StatelessWidget {
InvenotryInoutPage({super.key});
final inventoryInoutController =
Get.put<InventoryInoutController>(InventoryInoutController());
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// 工具栏的高度
SizedBox(
height: MediaQuery.of(context).padding.top,
),
UperBody(),
const Expanded(
child: TaskPageBody(),
),
],
);
}
}