作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在多个地方使用同一个小部件实例,一个地方的变化会同步到另一个地方。
但是在多个地方使用同一个实例看起来就像多个不同的实例。
那么我怎样才能实现这一壮举呢?
var test = InAppWebView(
// ...
);
Widget build(BuildContext context) {
return Scaffold(
body: PageView(
children: [
test, // widget one
test, // widget two
],
controller: _pageController,
physics: NeverScrollableScrollPhysics(),
onPageChanged: onPageChanged,
),
),
}
I'm use flutter_inappbrowser.
最佳答案
创建另一个类并返回类型,如您所需的小部件:
与我在各种类中需要的 customButton 相关的示例:
Widget customButton(title,context,ResponseCallback callBack,shadowColor) {
return Container(
margin: EdgeInsets.only(top: 20),
height: 80,
width: 150,
decoration: BoxDecoration(
color: Colors.blue,
borderRadius: BorderRadius.circular(75),
boxShadow: [
BoxShadow(
spreadRadius: 1,
blurRadius: 4,
offset: Offset(4, 3),
color: shadowColor
)
]
),
child: FlatButton(
onPressed: () {
callBack(title);
},
child: Text(title,
style: TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold)),
),
);
}
child: customButton(
comparedArray[index].category, context, buttonCallHandle,Colors.black),),
buttonCallHandle(e) {
dynamic instanceUpdated = instance.where((element) => element.category == e).toList();
Navigator.of(context).pushNamed('/choice', arguments: instanceUpdated);
关于dart - 如何在flutter中重用同一小部件的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56233729/
我是一名优秀的程序员,十分优秀!