12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import 'package:flutter/material.dart';
- import 'package:auto_route/auto_route.dart';
- import 'package:hooks_riverpod/hooks_riverpod.dart';
- import 'package:router/ext/auto_router_extensions.dart';
- import 'package:shared/utils/log_utils.dart';
- import 'package:widgets/my_load_image.dart';
- import 'package:widgets/ext/ex_widget.dart';
- import '../../../router/page/property_page_router.dart';
- import '../vm/property_vm.dart';
- @RoutePage()
- class PropertyPage extends HookConsumerWidget {
- const PropertyPage({Key? key}) : super(key: key);
- //启动当前页面
- static void startInstance({BuildContext? context}) {
- if (context != null) {
- context.router.push(const PropertyPageRoute());
- } else {
- appRouter.push(const PropertyPageRoute());
- }
- }
- // 顶部tab 切换
- Widget _buildTopSection(BuildContext context, WidgetRef ref, _vm) {
- final topSectionsData = _vm.topSectionsData;
- return Container(
- color: Colors.white,
- child: Center(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: List.generate(topSectionsData.length, (index) {
- final item = topSectionsData[index];
- return Container(
- child: Column(
- children: [
- MyAssetImage(
- item['icon'],
- width: 70,
- height: 70,
- ).onTap(
- () {
- _vm.switchPage(index, context);
- },
- type: ClickType.throttle,
- ),
- TextButton(
- onPressed: () {
- },
- child: Text(item['title']),
- ),
- ],
- ),
- ).marginOnly(left: 18, right: 18, top: 10, bottom: 10);
- }),
- ),
- ),
- );
- }
- @override
- Widget build(BuildContext context, WidgetRef ref) {
- final _vm = ref.read(propertyVmProvider.notifier);
- return DefaultTabController(
- length: 4,
- child: Scaffold(
- appBar: AppBar(
- title: Text("Property"),
- bottomOpacity: 0.0, // 取消下横线
- titleTextStyle: TextStyle(color: Colors.black),
- ),
- body: Row(
- children: [
- Expanded(
- child: Column(
- children: [
- _buildTopSection(context, ref, _vm),
- Expanded(
- child: AutoRouter(),
- )
- ],
- ),
- )
- ],
- )),
- );
- }
- }
|