63 lines
2.1 KiB
Dart
63 lines
2.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_dmzj/app/platform_utils.dart';
|
|
import 'package:flutter_dmzj/modules/comic/home/category/comic_category_view.dart';
|
|
import 'package:flutter_dmzj/modules/comic/home/comic_home_controller.dart';
|
|
import 'package:flutter_dmzj/modules/comic/home/latest/comic_latest_view.dart';
|
|
import 'package:flutter_dmzj/modules/comic/home/rank/comic_rank_view.dart';
|
|
import 'package:flutter_dmzj/modules/comic/home/recommend/comic_recommend_view.dart';
|
|
//import 'package:flutter_dmzj/modules/comic/home/special/comic_special_view.dart';
|
|
import 'package:flutter_dmzj/widgets/tab_appbar.dart';
|
|
import 'package:flutter_dmzj/widgets/windows_tab_page.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class ComicHomePage extends GetView<ComicHomeController> {
|
|
const ComicHomePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (PlatformUtils.isWindows) {
|
|
return WindowsTabPage(
|
|
tabs: [
|
|
WindowsTabItem(label: '推荐', body: ComicRecommendView()),
|
|
WindowsTabItem(label: '更新', body: ComicLatestView()),
|
|
WindowsTabItem(label: '分类', body: ComicCategoryView()),
|
|
WindowsTabItem(label: '排行', body: ComicRankView()),
|
|
],
|
|
headerAction: IconButton(
|
|
onPressed: controller.search,
|
|
icon: const Icon(Icons.search),
|
|
),
|
|
);
|
|
}
|
|
return Scaffold(
|
|
appBar: TabAppBar(
|
|
tabs: const [
|
|
Tab(text: "推荐"),
|
|
Tab(text: "更新"),
|
|
Tab(text: "分类"),
|
|
Tab(text: "排行"),
|
|
// Tab(text: "专题"),
|
|
],
|
|
controller: controller.tabController,
|
|
action: IconButton(
|
|
onPressed: controller.search,
|
|
icon: const Icon(
|
|
Icons.search,
|
|
),
|
|
),
|
|
),
|
|
body: TabBarView(
|
|
controller: controller.tabController,
|
|
children: [
|
|
ComicRecommendView(),
|
|
ComicLatestView(),
|
|
ComicCategoryView(),
|
|
ComicRankView(),
|
|
//ComicSpecialView(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|