appbar导航

Posted braveheart007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appbar导航相关的知识,希望对你有一定的参考价值。

import ‘package:flutter/material.dart‘;
import ‘dart:ui‘;

void main()=>runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomePage(),
);
}
}

class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> with SingleTickerProviderStateMixin{
TabController _controller;
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
void initState() {
super.initState();
_controller = TabController(length: 3, vsync: this);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(‘Run for better future‘),
bottom:TabBar(
tabs: <Widget>[
Tab(icon: Icon(Icons.accessibility),),
Tab(icon: Icon(Icons.description),),
Tab(icon: Icon(Icons.accessibility_new),),
],
controller: _controller,
),
),
body: TabBarView(
controller: _controller,
children: <Widget>[
Center(
child: Text(
‘Realize your value with your life‘,
style: TextStyle(
color: Colors.green,
fontWeight: FontWeight.bold,
fontSize: 26,
),
),
),
Center(
child: Text(
‘Play hard work hard‘,
style: TextStyle(
color: Colors.green,
fontWeight: FontWeight.bold,
fontSize: 26,
),
),
),
Center(
child: Text(
‘Magic of everthing is hope‘,
style: TextStyle(
color: Colors.green,
fontWeight: FontWeight.bold,
fontSize: 26,
),
),
),
],
),
);
}
}

以上是关于appbar导航的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 导航推送,同时保持 Appbar 不变

导航抽屉未在颤动中从 APPBar 小部件打开

Flutter——AppBar组件(顶部导航组件)

appbar导航

Flutter沉浸式状态栏/AppBar导航栏/仿咸鱼底部凸起导航

Uniapp 动态修改状态栏导航栏背景色字体颜色插件 Ba-AppBar