index.dart 399B

123456789101112131415
  1. import 'package:farmer_client/pages/infomation/widgets/Information/index.dart';
  2. import 'package:farmer_client/widgets/layout/BasicPage.dart';
  3. import 'package:flutter/material.dart';
  4. class Infomation extends BasicPage {
  5. Infomation({Key? key}) : super(key: key) {
  6. tabIndex = 2;
  7. naviTitle = '咨讯';
  8. }
  9. @override
  10. Widget builder(BuildContext context) {
  11. return Information();
  12. }
  13. }