Flutter实现底部导航栏
作者:夏沫凡尘 时间:2023-05-18 15:10:26
本文实例为大家分享了Flutter实现底部导航栏的具体代码,供大家参考,具体内容如下
效果
实现
先将自动生成的main.dart里面的代码删除,
import 'package:flutter/material.dart';
import 'package:flutter_guohe/pages/main.dart';
void main() {
runApp(new Guohe());
}
创建app.dart作为首页的页面文件
class Guohe extends StatefulWidget {
@override
GuoheState createState() => new GuoheState();
}
class GuoheState extends State<Guohe> {
@override
Widget build(BuildContext context) {
}
}
创建today.dart、kb.dart、playground.dart三个页面文件作为tabview的填充文件,这里用playground.dart为例。
import 'package:flutter/material.dart';
class Playground extends StatefulWidget {
@override
PlaygroundState createState() => new PlaygroundState();
}
class PlaygroundState extends State<Playground> {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text("操场"),
backgroundColor: Color.fromARGB(255, 119, 136, 213), //设置appbar背景颜色
centerTitle: true, //设置标题是否局中
),
body: new Center(
child: new Text('操场'),
),
),
);
}
}
app.dart的完整代码
/**
* APP的主入口文件
*/
import 'package:flutter/material.dart';
import 'package:flutter_guohe/pages/main/today.dart';
import 'package:flutter_guohe/pages/main/playground.dart';
import 'package:flutter_guohe/pages/main/kb.dart';
import 'package:flutter_guohe/pages/main/leftmenu.dart';
import 'package:flutter_guohe/common/eventBus.dart';
//果核的主界面
class Guohe extends StatefulWidget {
@override
GuoheState createState() => new GuoheState();
}
class GuoheState extends State<Guohe> with SingleTickerProviderStateMixin {
TabController controller;
@override
void initState() {
controller = new TabController(length: 3, vsync: this);
}
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
drawer: new LeftMenu(),
body: new TabBarView(
controller: controller,
children: <Widget>[
new Today(),
new Kb(),
new Playground(),
],
),
bottomNavigationBar: new Material(
color: Colors.white,
child: new TabBar(
controller: controller,
labelColor: Colors.deepPurpleAccent,
unselectedLabelColor: Colors.black26,
tabs: <Widget>[
new Tab(
text: "今日",
icon: new Icon(Icons.brightness_5),
),
new Tab(
text: "课表",
icon: new Icon(Icons.map),
),
new Tab(
text: "操场",
icon: new Icon(Icons.directions_run),
),
],
),
),
),
);
}
}
其中
labelColor: Colors.deepPurpleAccent,
unselectedLabelColor: Colors.black26,
第一个属性是控制标签颜色,这里我选了紫色,第二个属性是未选中标签时的颜色。
来源:https://blog.csdn.net/qq_33419925/article/details/84987282
标签:Flutter,导航栏
0
投稿
猜你喜欢
实例解析Java中的构造器初始化
2022-11-22 07:42:27
C语言实现字符串拼接和拷贝
2021-06-07 14:50:09
详解Guava中EventBus的使用
2021-09-13 07:36:34
java web项目里ehcache.xml介绍
2022-02-25 20:46:25
Java注解之Elasticsearch的案例详解
2022-03-30 12:28:58
android 选项卡(TabHost)如何放置在屏幕的底部
2023-07-09 21:19:59
Android 网络请求框架Volley实例详解
2023-08-11 07:00:18
C#使用RichTextBox实现替换文字及改变字体颜色功能示例
2023-07-04 23:04:18
Android TabLayout设置指示器宽度的方法
2023-03-27 02:53:05
在项目中直接使用hystrix的流程分析
2021-10-22 01:55:21
java中数组的定义及使用方法(推荐)
2022-03-07 14:20:16
Android读取资源文件的方法
2022-09-25 22:11:53
Mybatis Plus代码生成器(时间管理大师)
2023-01-30 16:27:35
SpringBoot使用MyBatis-Plus解决Invalid bound statement异常
2022-12-23 12:13:13
MapTask工作机制图文详解
2021-12-13 11:03:27
Kotlin协程的启动方式介绍
2022-05-26 10:29:27
Java解析Excel内容的方法
2023-03-20 20:36:26
java中Scanner类的简单用法分享
2023-04-16 04:24:50
java增强for循环的实现方法
2023-12-07 16:42:53
深入了解Java中String、Char和Int之间的相互转换
2022-09-14 10:18:54