pages.dart 476 字节
/*
 * @Author: 卢靖康
 * @Date: 2024-04-24 08:22:30
 * @LastEditTime: 2024-04-24 18:53:27
 * @LastEditors: 卢靖康
 */
import 'package:flutter_seaworld/pages/index.dart';
import 'package:get/get.dart';

import 'index.dart';

class RoutePages {
  // 列表
  static List<GetPage> list = [
    GetPage(
      name: RouteNames.download,
      page: () => const DownloadPage(),
    ),
    GetPage(
      name: RouteNames.map,
      page: () => const MapPage(),
    ),
  ];
}