Flutter项目HeroList之首页

学习Flutter自己撸的一个项目,用来显示王者荣耀英雄列表的。
项目地址:https://github.com/flywo/HeroList

首页详解

首先,我们来看首页的最终样式:


屏幕快照 2019-05-20 上午11.48.57.png

从上到下分析一下首页:

  • 导航栏
  • 内容
  • 底部导航栏

对应到Flutter的Widget分别是:

  • AppBar
  • GridView
  • BottomNavigationBar

由于项目需要一个AppBar与BottomNavigationBar来管理页面的跳转,所以,上面这些Widget都应该放到Flutter的Scaffold中,该Widget带了AppBar和BottomNavigationBar的属性,可以拿来直接用。

所以最终Widget树关系应该为:
MaterialApp -> Scaffold -> AppBar、GridView、BottomNavigationBar。

实现

搭建MaterialApp

由于要用到界面跳转,于是集成了第三方fluro来管理路由。在pubspec.yaml文件中设置依赖:

dio: ^2.1.0

然后下载:

flutter packages get

为了方便管理,我新建了一个router管理类,如下:

import 'package:fluro/fluro.dart';
import 'package:flutter/material.dart';
import '../View/AppHome.dart';
import '../View/HeroInfo.dart';
import '../View/AppComponent.dart';
import '../View/HeroVideo.dart';

class Application {
  static Router router;
  static buildRouter() {
    router = Router();
    router.define('/', handler: Handler(
        handlerFunc: (BuildContext context, Map<String, List<String>> parameters) {
          return AppHome();
        }
    ));
    router.define('/hero_info', handler: Handler(
        handlerFunc: (BuildContext context, Map<String, List<String>> parameters) {
          int index = int.parse(parameters['heroIndex'].first);
          return HeroInfo(
            hero: AppComponent.heros[index],
          );
        }
    ));
    router.define('/hero_info/hero_video', handler: Handler(
        handlerFunc: (BuildContext context, Map<String, List<String>> parameters) {
          int index = int.parse(parameters['heroIndex'].first);
          return HeroVideo(
            hero: AppComponent.heros[index],
          );
        }
    ));
  }
}

里面定义了一个类属性router用来管理路由,buildRouter()方法来初始化路由。

创建了一个基础Widget类AppComponent,如下:

import 'package:flutter/material.dart';
import '../Router/AppRouter.dart';
import '../Model/ArticleData.dart';
import '../Model/HeroData.dart';


class AppComponent extends StatefulWidget {

  static List<ArticleData> articles;
  static List<HeroData> heros;
  static List<CommonSkill> commonSkills;

  AppComponent({Key key}) : super(key: key);
  @override
  State<StatefulWidget> createState() {
    return _AppComponetState();
  }
}

class _AppComponetState extends State<AppComponent> {
  _AppComponetState() {
    Application.buildRouter();
  }
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: '王者荣耀',
      theme: ThemeData(
        primarySwatch: Colors.orange,
      ),
      onGenerateRoute: Application.router.generator,
    );
  }
}

该类的作用是存储了数据和创建基础Widget。具体页面内容在具体的类中实现。

搭建Home

创建出Home页面内容的Widget。通过Scaffold我们依次创建出AppBar、BottomNavigationBar。

import 'package:flutter/material.dart';
import '../View/HomeContent.dart';
import '../View/ArticleContent.dart';
import '../View/CommonContent.dart';


class AppHome extends StatefulWidget {
  AppHome({Key key}): super(key: key);
  @override
  State<StatefulWidget> createState() {
    return _AppHomeState();
  }
}

class _AppHomeState extends State<AppHome> {
  
//  var _itemWidth = (MediaQueryData.fromWindow(window).size.width - 40)/3;
//  var _itemWidth = (GlobalKey().currentContext.size.width - 40)/3;

  int _currentTabbarIndex = 0;

  Widget _getCurrentContent() {
    Widget result;
    switch (_currentTabbarIndex) {
      case 0:
        result = HomeContent();
        break;
      case 1:
        result = ArticleContent();
        break;
      case 2:
        result = CommonContent();
        break;
    }
    return result;
  }

  String _getCurrentTitle() {
    String result;
    switch (_currentTabbarIndex) {
      case 0:
        result = "英雄列表";
        break;
      case 1:
        result = "物品列表";
        break;
      case 2:
        result = "召唤师技能";
        break;
    }
    return result;
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text(_getCurrentTitle(), style: TextStyle(color: Colors.white),),
        ),
        body: _getCurrentContent(),
      bottomNavigationBar: BottomNavigationBar(
        unselectedItemColor: Colors.grey,
        selectedItemColor: Colors.white,
        backgroundColor: Theme.of(context).primaryColor,
        items: [
          BottomNavigationBarItem(
            icon: Icon(Icons.home,),
            title: Text(
              '英雄'
            )
          ),
          BottomNavigationBarItem(
              icon: Icon(Icons.apps,),
              title: Text(
                  '物品'
              )
          ),
          BottomNavigationBarItem(
              icon: Icon(Icons.insert_emoticon,),
              title: Text(
                  '技能'
              )
          ),
        ],
        currentIndex: _currentTabbarIndex,
        onTap: (int index) {
          setState(() {
            _currentTabbarIndex=index;
          });
        },
      ),
    );
  }
}

内容页面放在了HomeConten类中去实现。

  • 之所以把内容也放到对应的类中去实现,是为了方便下方BottomNavigationBar切换时,方便界面的切换和代码管理。

HomeConten类

import 'package:flutter/material.dart';
import '../Model/HeroData.dart';
import '../Net/Net.dart';
import '../Router/AppRouter.dart';
import 'package:fluro/fluro.dart';
import 'package:cached_network_image/cached_network_image.dart';
import '../View/AppComponent.dart';


class HomeContent extends StatefulWidget {
  HomeContent({Key key}) : super(key: key);
  @override
  State<StatefulWidget> createState() {
    return _HomeContentState();
  }
}

class _HomeContentState extends State<HomeContent> {

  List<HeroData> _heroList = [];

  @override
  void initState() {
    if (AppComponent.articles == null) {
      final future = getArticle();
      future.then((value) {
        AppComponent.articles = value;
      });
    }
    if (AppComponent.heros != null) {
      _heroList = AppComponent.heros;
      return;
    }
    final future = getMain();
    future.then((value) {
      setState(() {
        _heroList = value;
        AppComponent.heros = value;
      });
    });
  }

  Widget _getItem(double width, int index, HeroData hero) {
    return GestureDetector(
      onTap: () {
        Application.router.navigateTo(
            context,
            Uri.encodeFull('/hero_info?heroIndex=$index'),
            transition: TransitionType.native
        );
      },
      child: Column(
        children: <Widget>[
          CachedNetworkImage(
            width: width,
            height: width,
            fit: BoxFit.fill,
            imageUrl: 'https:${hero.href}',
            placeholder: (BuildContext context, String url) {
              return CircularProgressIndicator();
            },
            errorWidget: (BuildContext context, String url, Object error) {
              return Icon(Icons.error_outline);
            },
          ),
          Text(hero.name),
        ],
      ),
    );
  }

  Widget loading() {
    return Center(
      child: Column(
        mainAxisSize: MainAxisSize.max,
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.center,
        children: <Widget>[
          CircularProgressIndicator(),
          Padding(
            padding: EdgeInsets.only(top: 20),
            child: Text('加载中...'),
          ),
        ],
      ),
    );
  }

  Widget listView() {
    final width = (MediaQuery.of(context).size.width-40)/4;
    final aspect = width/(width+20);
    return GridView.builder(
      padding: EdgeInsets.all(5),
      itemCount: _heroList.length,
      itemBuilder: (BuildContext context, int index) {
        return _getItem(width, index, _heroList[index]);
      },
      gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
          crossAxisCount: 4,
          mainAxisSpacing: 10,
          crossAxisSpacing: 10,
          childAspectRatio: aspect
      ),
    );
  }

  @override
  Widget build(BuildContext context) {
    return _heroList.length==0? loading() : listView();
  }
}

在该类中,我们只需要专注于内容的实现就行。

结束

在UI层面与在文件层面,他们的对应关系是:

MaterialApp -> Scaffold -> AppBar、GridView、BottomNavigationBar
AppComponent -> AppHome -> HomeContent

之所以这样分层次分开,主要还是为了后面代码量越来越大,方便管理。

相信代码请查看:https://github.com/flywo/HeroList
喜欢的朋友给个star,非常感谢。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容

  • Flutter和Dart系列文章和代码GitHub地址 Flutter一切皆Widget的核心思想, 为我们提供了...
    TitanCoder阅读 2,558评论 0 0
  • 英文官网:https://flutter.io/中文网:https://flutterchina.club/ 首先...
    超威蓝猫l阅读 2,818评论 1 3
  • 原文在此,此处只为学习 Widget与ElementWidget主要接口Stateless WidgetState...
    lltree阅读 4,508评论 0 1
  • 第1步:创建初始Flutter应用 创建一个简单的 Flutter 应用。主要编辑 Dart 代码所在的 lib ...
    小白_Sing阅读 946评论 0 0
  • 计划 1、早起阅读、思维训练 2、合并代码准备产品详情页的上线 3、专业方面1个小时时间学习 总结 产品详情也上线...
    Alee文润阅读 104评论 0 0