flutter使用 InheritedWidget有效地传递数据给子部件
如果你已经开始学习Flutter了,是不是很熟悉这段代码。@overrideWidget build(BuildContext context) { return new Text( 'Flut...
Flutter部件子部件根据父部件传递的回调函数修改值
例如两个部件,父部件传递给子部件一个回调函数,子部件使用这个回调函数修改父部件的值import 'package:flutter/material.dart'; ...
Flutter PaginatedDataTable 的基本使用
PaginatedDataTable参数PaginatedDataTable({ Key key, @required this.header,//设置头部 this.actions, @required this.columns,...
flutter中DataTable表格部件
DataTable参数DataTable({ Key key, @required this.columns,columns this.sortColumnIndex, this.sortAscending = true, this.o...
flutter中的chip部件
Chip参数const Chip({ Key key, this.avatar,//标签左侧Widget,一般为小图标 @required this.label,//标签 this.labelStyle, th...
flutter中ExpansionPanelList收缩面板
ExpansionPanelList参数const ExpansionPanelList({ Key key, this.children = const <ExpansionPanel>[],//子部件 this.expansionCa...
flutter中snckBar部件
snckBar部件用来在底部提示一些信息const SnackBar({ Key key, @required this.content,//提示内容 this.backgroundColor,//背景 t...
Flutter 开发常见问题
Scaffold.of() called with a context that does not contain a Scaffold.当你在 dart 文件中要使用 SnackBar 时,需要调用...
flutter中的BottomSheet底部菜单列表
showModalBottomSheet方法可以弹出一个Material风格的底部菜单列表模态对话框,示例如下:// 弹出底部菜单列表模态对话框Future<int> _show...
Flutter中AlertDialog对话框使用与回调函数
AlertDialogconst AlertDialog({ Key key, this.title, //对话框标题组件 this.titlePadding, // 标题填充 this.titleTextStyle, /...
Flutter中showTimePicker 时间选择器
showTimePicker 参数Future<TimeOfDay> showTimePicker({ @required BuildContext context, @required TimeOfDay initialTime, Tran...
Flutter中showDatePicker日期选择器
showDatePicker参数Future<DateTime> showDatePicker ({ @required BuildContext context, // 上下文 @required DateTime initialDate,...
Flutter中Slider滑动选择器
Slider滑动选择器参数const Slider({ Key key, @required this.value,//默认值 @required this.onChanged,//滑动回调函数 this.onC...
Flutter中Switch开关部件
Switch参数const Switch({ Key key, @required this.value,//true:开 false:关 @required this.onChanged,//变化时回调 this.act...
Flutter中的Radio部件
Radio参数const Radio({ Key key, @required this.value,//每个单选按钮的值,每个值是唯一的,不可重复 @required this.groupValue,...
Flutter中CheckBox复选框部件
CheckBox参数const Checkbox({ Key key, @required this.value,//是否选中此复选框 this.tristate = false,//默认false,如果为t...