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(); final state = Get.find().state; return PopScope( canPop: false, onPopInvoked: (_) { ToolFn().isExit(); }, child: Scaffold( appBar: AppBar( title: const Text("商家中心"), ), body: const Center( child: Text("商家中心!!!"), ), ), ); } }