- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我试图让 ExpansionTile
在我选择一个项目后折叠,但它不会关闭打开的列表。
我尝试使用 onExpansionChanged
属性但没有成功
你怎么能解决这个问题?
插入一个gif,演示ExpansionTile
在选择项目后没有折叠,下面也是使用的代码。
import 'package:flutter/material.dart';
void main() {
runApp(new ExpansionTileSample());
}
class ExpansionTileSample extends StatefulWidget {
@override
ExpansionTileSampleState createState() => new ExpansionTileSampleState();
}
class ExpansionTileSampleState extends State<ExpansionTileSample> {
String foos = 'One';
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('ExpansionTile'),
),
body: new ExpansionTile(
title: new Text(this.foos),
backgroundColor: Theme.of(context).accentColor.withOpacity(0.025),
children: <Widget>[
new ListTile(
title: const Text('One'),
onTap: () {
setState(() {
this.foos = 'One';
});
},
),
new ListTile(
title: const Text('Two'),
onTap: () {
setState(() {
this.foos = 'Two';
});
},
),
new ListTile(
title: const Text('Three'),
onTap: () {
setState(() {
this.foos = 'Three';
});
},
),
]
),
),
);
}
}
最佳答案
这里有一个解决方案。我们只需在 ExpansionTile
中添加 expand
、collapse
和 toggle
功能。
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
void main() {
runApp(new ExpansionTileSample());
}
class ExpansionTileSample extends StatefulWidget {
@override
ExpansionTileSampleState createState() => new ExpansionTileSampleState();
}
class ExpansionTileSampleState extends State<ExpansionTileSample> {
final GlobalKey<AppExpansionTileState> expansionTile = new GlobalKey();
String foos = 'One';
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('ExpansionTile'),
),
body: new AppExpansionTile(
key: expansionTile,
title: new Text(this.foos),
backgroundColor: Theme
.of(context)
.accentColor
.withOpacity(0.025),
children: <Widget>[
new ListTile(
title: const Text('One'),
onTap: () {
setState(() {
this.foos = 'One';
expansionTile.currentState.collapse();
});
},
),
new ListTile(
title: const Text('Two'),
onTap: () {
setState(() {
this.foos = 'Two';
expansionTile.currentState.collapse();
});
},
),
new ListTile(
title: const Text('Three'),
onTap: () {
setState(() {
this.foos = 'Three';
expansionTile.currentState.collapse();
});
},
),
]
),
),
);
}
}
// --- Copied and slightly modified version of the ExpansionTile.
const Duration _kExpand = const Duration(milliseconds: 200);
class AppExpansionTile extends StatefulWidget {
const AppExpansionTile({
Key key,
this.leading,
@required this.title,
this.backgroundColor,
this.onExpansionChanged,
this.children: const <Widget>[],
this.trailing,
this.initiallyExpanded: false,
})
: assert(initiallyExpanded != null),
super(key: key);
final Widget leading;
final Widget title;
final ValueChanged<bool> onExpansionChanged;
final List<Widget> children;
final Color backgroundColor;
final Widget trailing;
final bool initiallyExpanded;
@override
AppExpansionTileState createState() => new AppExpansionTileState();
}
class AppExpansionTileState extends State<AppExpansionTile> with SingleTickerProviderStateMixin {
AnimationController _controller;
CurvedAnimation _easeOutAnimation;
CurvedAnimation _easeInAnimation;
ColorTween _borderColor;
ColorTween _headerColor;
ColorTween _iconColor;
ColorTween _backgroundColor;
Animation<double> _iconTurns;
bool _isExpanded = false;
@override
void initState() {
super.initState();
_controller = new AnimationController(duration: _kExpand, vsync: this);
_easeOutAnimation = new CurvedAnimation(parent: _controller, curve: Curves.easeOut);
_easeInAnimation = new CurvedAnimation(parent: _controller, curve: Curves.easeIn);
_borderColor = new ColorTween();
_headerColor = new ColorTween();
_iconColor = new ColorTween();
_iconTurns = new Tween<double>(begin: 0.0, end: 0.5).animate(_easeInAnimation);
_backgroundColor = new ColorTween();
_isExpanded = PageStorage.of(context)?.readState(context) ?? widget.initiallyExpanded;
if (_isExpanded)
_controller.value = 1.0;
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
void expand() {
_setExpanded(true);
}
void collapse() {
_setExpanded(false);
}
void toggle() {
_setExpanded(!_isExpanded);
}
void _setExpanded(bool isExpanded) {
if (_isExpanded != isExpanded) {
setState(() {
_isExpanded = isExpanded;
if (_isExpanded)
_controller.forward();
else
_controller.reverse().then<void>((Null value) {
setState(() {
// Rebuild without widget.children.
});
});
PageStorage.of(context)?.writeState(context, _isExpanded);
});
if (widget.onExpansionChanged != null) {
widget.onExpansionChanged(_isExpanded);
}
}
}
Widget _buildChildren(BuildContext context, Widget child) {
final Color borderSideColor = _borderColor.evaluate(_easeOutAnimation) ?? Colors.transparent;
final Color titleColor = _headerColor.evaluate(_easeInAnimation);
return new Container(
decoration: new BoxDecoration(
color: _backgroundColor.evaluate(_easeOutAnimation) ?? Colors.transparent,
border: new Border(
top: new BorderSide(color: borderSideColor),
bottom: new BorderSide(color: borderSideColor),
)
),
child: new Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
IconTheme.merge(
data: new IconThemeData(color: _iconColor.evaluate(_easeInAnimation)),
child: new ListTile(
onTap: toggle,
leading: widget.leading,
title: new DefaultTextStyle(
style: Theme
.of(context)
.textTheme
.subhead
.copyWith(color: titleColor),
child: widget.title,
),
trailing: widget.trailing ?? new RotationTransition(
turns: _iconTurns,
child: const Icon(Icons.expand_more),
),
),
),
new ClipRect(
child: new Align(
heightFactor: _easeInAnimation.value,
child: child,
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
_borderColor.end = theme.dividerColor;
_headerColor
..begin = theme.textTheme.subhead.color
..end = theme.accentColor;
_iconColor
..begin = theme.unselectedWidgetColor
..end = theme.accentColor;
_backgroundColor.end = widget.backgroundColor;
final bool closed = !_isExpanded && _controller.isDismissed;
return new AnimatedBuilder(
animation: _controller.view,
builder: _buildChildren,
child: closed ? null : new Column(children: widget.children),
);
}
}
关于dart - Flutter - 选择项目后折叠 ExpansionTile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48930372/
这是我的代码,我创建了一个 ExpansionTile 并且它有一个子 TextFormField。 import 'package:flutter/material.dart'; class Ord
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我的问题是: Flutter 有没有办法只允许扩展动态生成的 ListView 的一个 ExpansionTile? 例如我的 ListView 有三个 ExpansionTiles,我点击第一个,它
如何删除 ExpansionTile 中前导 Widget 中的垂直填充,使其看起来像下面的 ListTile? 这是我的代码: Container( decoration: BoxDecorat
有没有办法让 Flutter ExpansionTile 小部件上的旋转展开箭头作为前导而不是尾随? 最佳答案 const ExpansionTile( title: Text('
以下问题:我有一个列表 ExpansionTiles效果很好。我面临的唯一问题是,滚动到 View 之外的展开的 ExpansionTile 在再次滚动到 View 后将不再展开。这会导致不良的用户体
我创建了一个 expandtile,并将原来的尾随图标更改为我自定义的 svg 图标。每当我单击扩展图 block 时...一切正常,但新的 svg 尾随图标不会像原始尾随图标那样旋转。请问我该如何解
我正在打开一个表单来输入详细信息,并在填写完所有内容并提交后将其关闭,但只有尾随图标发生了变化,我还试图在 onExpansionChanged 中设置更改。但不会反射(reflect)在 UI 中。
我正在尝试使用扩展图 block 并在少数情况下禁用扩展功能...可以这样做吗?我的意思是任何现有的“扩展”小部件是否涵盖了这个东西?如果没有,那么是否有任何可用的软件包可以帮助我做到这一点?我应该如
我需要更改尾随的颜色 keyboard_down_arrow在 ExpansionTile .我曾尝试将它包装在 Theme 小部件中并设置重音、primary 和 IconTheme,但似乎没有任何
我有一个 ExpansionTile与 TextField当用户展开磁贴时,尝试将焦点设置到此文本字段。但由于某些原因,我无法让它工作。 这是代码: ExpansionTile( key: Pag
默认情况下,我们在 ExpansionTile 的 header 中有 16 个水平填充,因为它是 ListTile 并且它有 /// If null, `EdgeInsets.symmetric(h
listview 在 ExpansionTile 中不工作 我试图在 ExpansionTile 中显示一个 listview.builder,但它抛出了一些异常 Card( child
我将此作为扩展和折叠扩展瓦片的引用------ Flutter - Collapsing ExpansionTile after choosing an item 我想要的是,如果我打开一个扩展图 b
是否可以在 flutter 中更改扩展图 block ?具体来说,我想删除它在扩展时创建的分隔符。我也想调整它的填充。那可能吗?谢谢! 最佳答案 来自ExpansionTile的来源 https://
我试图让 ExpansionTile 在我选择一个项目后折叠,但它不会关闭打开的列表。 我尝试使用 onExpansionChanged 属性但没有成功 你怎么能解决这个问题? 插入一个gif,演示E
我想在“ExpansionTile”打开时更改颜色。当我打开我的 ExpansionTile 时,此时我得到了白色背景,但打开后我想要浅灰色,看起来像我的第一个屏幕截图这是我的代码。 我也想增加我的图
我想要做的是将圆角边缘应用到整个瓷砖,即使是在 child 内部的容器打开时,就像它折叠时一样。 我尝试使用 BoxDecoration 通过其容器应用样式,但它给了我错误。我不知道如何继续,因为与
我建了一个 Listview与 ExpansionTile .但是现在我想要,如果我点击 ExpansionTile那么只有ExpansionTile应开等 展开ExpansionTile应该关闭。
我想降低 expansionTile 的高度, 我试过了ConfigurableExpansionTile但它不支持空安全,所以我不能在我的项目中使用它。 我还在 ListTileTheme 中包装了
我是一名优秀的程序员,十分优秀!