Wigets学习之Material部件
时间:2021-06-28 11:18:38
Flutter 提供了一套 Material 部件,一般 Material 应用都是以MaterialApp
这个部件开始的。
MaterialApp
title
:标题,此标题是任务管理器中的标题onGenerateTitle
:动态设置标题,指定则使用返回的字符串,未指定则使用title
home
:应用首页initialRoute
:初始路由routes
:路由列表onGenerateRoute
:动态路由构造函数onGenerateInitialRoutes
:如果提供了initialRoute
,则作为初始路由的路由生成构造函数onUnknownRoute
:未找到指定的路由时跳转的路由color
:应用的主色theme
:浅色主题,可用Theme
指定darkTheme
:深色主题highContrastTheme
:高对比浅色主题highContrastDarkTheme
:高对比深色主题locale
:多语言配置debugShowMaterialGrid
:是否显示调试网格,默认为false
showPerformanceOverlay
:是否显示性能面板,默认为false
showSemanticsDebugger
:是否显示报告可访问性的覆盖,默认为false
debugShowCheckedModeBanner
:是否显示右侧顶部debug
标签,开发环境默认为true
shortcuts
:快捷键配置actions
:行为配置
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Material部件学习",
home: Home(),
);
}
}
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Material部件'),
),
);
}
}
动态指定初始化路由
一般用于未登录时显示登录页,登录则显示首页
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
final bool isLogin = false;
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '动态路由学习',
initialRoute: '/',
onGenerateInitialRoutes: (String name) {
return [
MaterialPageRoute(builder: (context) {
if (isLogin) {
return Page(title: '首页');
} else {
return Page(title: '登录');
}
})
];
},
routes: {
'/': (BuildContext context) => Page(title: '首页'),
'/login': (BuildContext context) => Page(title: '登录')
},
);
}
}
class Page extends StatelessWidget {
final String title;
Page({Key? key, required this.title}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(title),
),
);
}
}
Scaffold:Material
风格布局
Scaffold
布局提供了一些预留位置,比如:appBar
、body
、floatingActionButton
、bottomNavigationBar
等
appBar
:顶部应用程序栏,通过AppBar
指定body
:主体backgroundColor
:背景色floatingActionButton
:右底部悬停按钮drawer
:左侧抽屉,如果指定了,则在appBar
左侧会出现一个菜单图标,点击之后可以在左侧打开抽屉onDrawerChanged
:抽屉显示改变事件,接受一个bool
类型的参数,抽屉是否打开endDrawer
:右侧抽屉,如果指定了,则在appBar
右侧会出现一个菜单图标,点击之后可以在右侧打开抽屉drawerScrimColor
:抽屉的遮罩颜色drawerEdgeDragWidth
:抽屉打开的默认宽度bottomNavigationBar
:底部tabbar
,通过BottomNavigationBar
指定persistentFooterButtons
:底部按钮组,在bottomNavigationBar
上方显示bottomSheet
:底部区域,在persistentFooterButtons
上方显示resizeToAvoidBottomInset
:body
和浮动小部件自动调整大小,避免键盘弹起遮挡,默认为true
primary
:是否使用屏幕状态栏高度,如果为true
则appBar
的高度会扩展屏幕状态栏的高度,默认为true
drawerDragStartBehavior
:设置抽屉拖动行为,DragStartBehavior.start
: 检测拖动手势开始,DragStartBehavior.end
:检测首次down
事件开始,默认为DragStartBehavior.start
extendBody
:是否扩展body
,如果为true
,则body
则会充满除appBar
和bottomNavigationBar
区域,默认为false
drawerEnableOpenDragGesture
:是否可手势拖动打开左侧抽屉,默认为true
endDrawerEnableOpenDragGesture
:是否可手势拖动打开右侧侧抽屉,默认为true
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Material部件学习",
home: Home(),
theme: ThemeData(
primaryColor: Colors.yellow,
floatingActionButtonTheme: FloatingActionButtonThemeData(
backgroundColor: Colors.yellow, foregroundColor: Colors.black)),
);
}
}
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Material部件'),
),
body: Container(
color: Colors.blue,
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
),
drawer: Container(
width: 300,
height: double.infinity,
padding: EdgeInsets.all(24),
color: Colors.white,
child: Text('这是一个左侧抽屉'),
),
onDrawerChanged: (bool isOpened) {
print('左侧抽屉: $isOpened');
},
endDrawer: Container(
width: 300,
height: double.infinity,
padding: EdgeInsets.all(24),
color: Colors.white,
child: Text('这是一个右侧抽屉'),
),
onEndDrawerChanged: (bool isOpened) {
print('右侧抽屉: $isOpened');
},
bottomSheet: Container(
width: double.infinity,
child: Text('这是bottomSheet区域'),
),
persistentFooterButtons: [
OutlinedButton(onPressed: null, child: Text('按钮1')),
OutlinedButton(onPressed: null, child: Text('按钮2')),
OutlinedButton(onPressed: null, child: Text('按钮3')),
OutlinedButton(onPressed: null, child: Text('按钮4')),
],
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
items: [
BottomNavigationBarItem(icon: Icon(Icons.home), label: "首页"),
BottomNavigationBarItem(icon: Icon(Icons.camera), label: "圈子"),
BottomNavigationBarItem(icon: Icon(Icons.weekend), label: "生活"),
BottomNavigationBarItem(
icon: Icon(Icons.shopping_bag), label: "返利优惠"),
BottomNavigationBarItem(icon: Icon(Icons.person), label: "我的")
],
),
backgroundColor: Colors.blue.shade50,
drawerEdgeDragWidth: 20);
}
}
AppBar
leading
:应用程序栏左侧图标leadingWidth
:左侧宽度automaticallyImplyLeading
:是否尝试自动展示 leading 部件,如果leading
没有指定,则此参数生效,为true
时,如果指定了Scaffold
的drawer
则会leading
会自动展示为一个菜单按钮,为false
则不展示leading
,除非指定leading
title
:标题centerTitle
:标题是否居中,默认为false
titleSpacing
:标题左右间距titleTextStyle
:标题样式actions
:右侧操作列表flexibleSpace
:绝对定位在屏幕状态栏和应用程序栏上,高度和应用程序栏高度相同bottom
:位于应用程序栏下的位置,一般用于放置tabBar
elevation
:阴影shadowColor
:阴影颜色backgroundColor
:背景色foregroundColor
文本和图标默认颜色iconTheme
:图标主题actionsIconTheme
:操作列表图标主题textTheme
:文本主题primary
:与Scaffold
的primary
一致toolbarOpacity
:应用程序栏透明度,默认为 1bottomOpacity
:bottom
透明度,默认为 1toolbarHeight
:应用程序栏高度toolbarTextStyle
:应用程序栏文本样式
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Material部件学习",
home: Home(),
theme: ThemeData(
primaryColor: Colors.yellow,
floatingActionButtonTheme: FloatingActionButtonThemeData(
backgroundColor: Colors.yellow, foregroundColor: Colors.black)),
);
}
}
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false,
title: Text('Material部件'),
titleSpacing: 0,
actions: [
IconButton(icon: Icon(Icons.search), onPressed: () {}),
IconButton(icon: Icon(Icons.menu), onPressed: () {})
],
bottom: PreferredSize(
child: Text('bottom'),
preferredSize: Size(30, 30),
),
),
drawer: Container(
color: Colors.white,
height: double.infinity,
width: 300,
child: Text('asdsd'),
),
);
}
}
BottomNavigationBar
items
:列表项(必填且 length>=2)onTap
:点击事件currentIndex
:当前激活项的索引,默认为 0elevation
:阴影type
:布局类型,默认为:BottomNavigationBarType.shifting
(排列不开就隐藏),一般当超过三个之后需要将type
指定为BottomNavigationBarType.fixed
fixedColor
:当前激活项颜色,与selectedItemColor
不能同时存在backgroundColor
:背景色iconSize
:图标大小,默认为 24selectedItemColor
:选中选项的颜色,与fixedColor
不能同时存在unselectedItemColor
:未选中选项的颜色selectedIconTheme
:选中选项的图标主题unselectedIconTheme
:未选中选项的图标主题selectedFontSize
:选中选项文字大小,默认为 14unselectedFontSize
:未选中选项文字大小,默认为 12selectedLabelStyle
:选中项label
样式unselectedLabelStyle
:未选中项label
样式showSelectedLabels
:是否显示选中选项的label
showUnselectedLabels
:是否显示未选中选项的label
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Material部件学习",
home: Home(),
theme: ThemeData(
primaryColor: Colors.yellow,
floatingActionButtonTheme: FloatingActionButtonThemeData(
backgroundColor: Colors.yellow, foregroundColor: Colors.black)),
);
}
}
class Home extends StatefulWidget {
Home({Key? key}) : super(key: key);
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
int _index = 0;
static List<IconData> icons = [
Icons.home,
Icons.camera,
Icons.shopping_bag,
Icons.person
];
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Icon(
icons[_index],
size: 60,
),
),
bottomNavigationBar: BottomNavigationBar(
items: [
BottomNavigationBarItem(icon: Icon(Icons.home), label: "首页"),
BottomNavigationBarItem(icon: Icon(Icons.camera), label: "动态"),
BottomNavigationBarItem(icon: Icon(Icons.shopping_bag), label: "购物车"),
BottomNavigationBarItem(icon: Icon(Icons.person), label: "我的"),
],
currentIndex: _index,
onTap: (index) {
setState(() {
_index = index;
});
},
type: BottomNavigationBarType.fixed,
),
);
}
}