ModalBarrier、AnimatedModalBarrier、DefaultAssetBundle、DropdownButtonFormField、FormField、InheritedWidget、PaginatedDataTable

This commit is contained in:
toly
2020-12-20 16:58:17 +08:00
parent ccc9414285
commit da9764a51c
14 changed files with 581 additions and 45 deletions

View File

@@ -0,0 +1,58 @@
import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020/9/21
/// contact me by email 1981462002@qq.com
/// 说明: 346 InheritedWidget 传承组件
/// 该类是抽象类作用是可以在本上下文存储数据在其后续节点的上下文中共享该数据。有很多实现类包括各种主题组件、MediaQuery等。
/// link: 167,319,328,324,331
///
// {
// "widgetId": 346,
// "name": 'InheritedWidget 使用',
// "priority": 1,
// "subtitle":
// "【child】 : 子组件 【Widget】\n"
// "下面是一个简单的自定义 InheritedWidget实现信息的子树共享。",
// }
class InheritedWidgetDemo extends StatelessWidget {
final String info =
'InheritedWidget 是一个抽象类,不可以直接使用。可以自定义对应共享数据的子类,如这里的通过 InfoInheritedWidget 实现:当前这段话可以在任意子树节点上下文获取。'
'一般都会定义一个 XXX.of(context) 的方法来获取数据,如 MediaQuery.ofTheme.of 等。';
@override
Widget build(BuildContext context) {
return InfoInheritedWidget(
info: info,
child: InfoWidget(),
);
}
}
class InfoWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
String info = InfoInheritedWidget.of(context).info;
return Container(
color: Colors.blue.withOpacity(0.1),
padding: EdgeInsets.all(10),
margin: EdgeInsets.all(10),
child: Text(info),
);
}
}
class InfoInheritedWidget extends InheritedWidget {
final String info;
InfoInheritedWidget({Key key, this.info, @required Widget child})
: super(key: key, child: child);
@override
bool updateShouldNotify(covariant InfoInheritedWidget oldWidget) =>
info != oldWidget.info;
static InfoInheritedWidget of(BuildContext context) =>
context.dependOnInheritedWidgetOfExactType<InfoInheritedWidget>();
}