123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- import 'dart:io';
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import 'package:vitalapp/architecture/utils/prompt_box.dart';
- import 'package:vitalapp/components/dynamic_drawer.dart';
- import 'package:vitalapp/managers/interfaces/record_data_cache.dart';
- import 'package:vitalapp/pages/home/controller.dart';
- import 'package:vitalapp/pages/home/widgets/avatar.dart';
- import 'package:fis_common/helpers/color.dart';
- import 'package:path_provider/path_provider.dart';
- import 'widgets/menus.dart';
- import 'widgets/navigator.dart';
- import 'widgets/patient.dart';
- import 'widgets/status_bar.dart';
- class HomePage extends GetView<HomeController> {
- const HomePage({super.key});
- @override
- Widget build(BuildContext context) {
- return SafeArea(
- top: false,
- bottom: false,
- right: false,
- left: false,
- // maintainBottomViewPadding: true,
- child: LayoutBuilder(
- builder: (context, c) {
- return WillPopScope(
- onWillPop: () async {
- return false;
- },
- child: Scaffold(
- key: controller.homeScaffoldKey,
- // resizeToAvoidBottomInset: false,
- backgroundColor: const Color.fromRGBO(238, 238, 238, 1),
- endDrawer: VDynamicDrawerWrapper(
- scaffoldKey: controller.homeScaffoldKey,
- ),
- body: Row(
- mainAxisSize: MainAxisSize.max,
- children: [
- // Expanded(child: _buildBody(context)),
- SizedBox(
- width: c.maxWidth,
- child: _buildBody(context),
- ),
- ],
- ),
- ),
- );
- },
- ),
- );
- }
- Widget _buildBody(BuildContext context) {
- final menuScrollController = ScrollController();
- return Row(
- mainAxisSize: MainAxisSize.max,
- children: [
- Container(
- width: 120,
- // color: const Color.fromRGBO(10, 32, 48, .8),
- decoration: BoxDecoration(
- gradient: LinearGradient(
- colors: [
- // Color.fromRGBO(59, 188, 255, 1),
- // Color.fromRGBO(44, 120, 229, 1),
- Theme.of(context).primaryColor,
- FColorHelper.mixColor(
- Colors.black, Theme.of(context).primaryColor, 50),
- ],
- begin: Alignment.bottomRight,
- end: Alignment.topLeft,
- ),
- ),
- child: Stack(
- children: [
- Positioned(
- bottom: 0,
- left: 0,
- right: 0,
- child: Opacity(
- opacity: 0.5,
- child: Image.asset(
- "assets/images/e_hospital.png",
- fit: BoxFit.fitWidth,
- ),
- ),
- ),
- Column(
- mainAxisSize: MainAxisSize.max,
- children: [
- SizedBox(
- height: 90,
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Obx(
- () => HomeAvatarWidget(
- size: 40,
- headImageToken: controller.state.headImageToken,
- ),
- ),
- const SizedBox(
- height: 8,
- ),
- Obx(
- () => Text(
- controller.state.doctorName,
- style: const TextStyle(
- color: Colors.white,
- fontSize: 16,
- ),
- ),
- ),
- ],
- ),
- ),
- Divider(
- color: Colors.white.withOpacity(.4),
- height: 1,
- indent: 30,
- endIndent: 30,
- ),
- const SizedBox(
- height: 8,
- ),
- Expanded(
- child: Obx(
- () {
- return HomeMenuListViewWidget(
- source: controller.state.menuItems,
- scrollerController: menuScrollController,
- currentSelectMenu: controller.state.currentSelectMenu,
- );
- },
- ),
- ),
- ],
- ),
- ],
- ),
- ),
- Container(
- color: Theme.of(context).primaryColor,
- child: VerticalDivider(
- width: 1,
- color: Colors.white.withOpacity(.4),
- ),
- ),
- Expanded(
- child: Column(
- children: [
- SizedBox(
- height: 60,
- child: _buildHeader(context),
- ),
- Expanded(
- child: Row(
- children: [
- Expanded(
- child: _buildContent(),
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- ],
- );
- }
- Widget _buildContent() {
- return const Padding(
- padding: EdgeInsets.all(8),
- child: HomeNavigator(),
- // child: Container(
- // color: Colors.white,
- // child: HomeNavigator(),
- // ),
- );
- }
- Widget _buildHeader(BuildContext context) {
- final themeData = Theme.of(context);
- return Container(
- alignment: Alignment.center,
- decoration: BoxDecoration(
- gradient: LinearGradient(
- colors: [
- // Color.fromRGBO(59, 188, 255, 1),
- // Color.fromRGBO(44, 120, 229, 1),
- themeData.primaryColor.withOpacity(.6),
- themeData.primaryColor,
- ],
- begin: Alignment.topRight,
- end: Alignment.bottomLeft,
- ),
- ),
- child: Center(
- child: Row(
- mainAxisSize: MainAxisSize.max,
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Expanded(
- flex: 4,
- child: Align(
- alignment: Alignment.centerLeft,
- child: _buildHeaderLeft(),
- ),
- ),
- Flexible(
- flex: 4,
- child: Align(
- alignment: Alignment.center,
- child: _buildHeaderCenter(),
- ),
- ),
- Expanded(
- flex: 4,
- child: Align(
- alignment: Alignment.centerRight,
- child: _buildHeaderRight(context),
- ),
- ),
- ],
- ),
- ),
- );
- }
- Widget _buildHeaderLeft() {
- return Row(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- // const HomeAvatarWidget(size: 40),
- const SizedBox(width: 16),
- RichText(
- text: TextSpan(
- text: controller.state.doctorTeamName,
- style: const TextStyle(
- color: Colors.white,
- fontSize: 20,
- fontWeight: FontWeight.bold,
- ),
- // children: [
- // TextSpan(
- // text: '- ${controller.state.doctorName}',
- // style: const TextStyle(
- // color: Colors.white,
- // fontSize: 20,
- // ),
- // )
- // ],
- ),
- ),
- ],
- );
- }
- Widget _buildHeaderCenter() {
- return Row(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- // Image.asset(
- // "assets/images/vinno_logo2.png",
- // height: 35,
- // fit: BoxFit.fitHeight,
- // ),
- const SizedBox(width: 10),
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: const [
- // SizedBox(height: 8),
- Text(
- "杏聆荟健康平台",
- style: TextStyle(
- color: Colors.white,
- fontSize: 24,
- fontWeight: FontWeight.bold,
- ),
- ),
- ],
- ),
- if (kDebugMode) ...[
- InkWell(
- child: const Text(
- ' CP DB ',
- style: TextStyle(fontSize: 20, color: Colors.white),
- ),
- onTap: () async {
- var sPath = "/data/user/0/com.vinno.vitalapp/databases/vital.db";
- final directory = await getExternalStorageDirectory();
- final path = directory?.path;
- final sourceFile = File(sPath);
- final destFile = File('$path/vital.db');
- await destFile.create(recursive: true);
- await sourceFile.copy(destFile.path);
- PromptBox.toast('Copy成功');
- Get.find<IRecordDataCacheManager>()
- .getLastRecordByPatientCode('320923199202050073');
- },
- ),
- ]
- ],
- );
- }
- Widget _buildHeaderRight(BuildContext context) {
- return Row(
- mainAxisSize: MainAxisSize.min,
- children: const [
- HeaderPatientPlace(),
- Padding(
- padding: EdgeInsets.symmetric(horizontal: 8),
- child: VerticalDivider(
- indent: 12,
- endIndent: 12,
- color: Colors.white,
- ),
- ),
- HeaderStatusBar(),
- ],
- );
- }
- }
|