Files
flutter-jdt-store/lib/pages/layout/user/user_view.dart
2023-12-22 23:27:14 +08:00

31 lines
675 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../../utils/utils.dart';
import 'user_logic.dart';
class UserPage extends StatelessWidget {
const UserPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final logic = Get.find<UserLogic>();
final state = Get.find<UserLogic>().state;
return PopScope(
canPop: false,
onPopInvoked: (_) {
ToolFn().isExit();
},
child: Scaffold(
appBar: AppBar(
title: const Text("商家中心"),
),
body: const Center(
child: Text("商家中心!!!"),
),
),
);
}
}