forked from lxm_flutter/FlutterUnit
203 lines
6.3 KiB
Dart
203 lines
6.3 KiB
Dart
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
const Duration _kExpand = Duration(milliseconds: 200);
|
|
|
|
/// A single-line [ListTile] with a trailing button that expands or collapses
|
|
/// the tile to reveal or hide the [children].
|
|
///
|
|
/// This widget is typically used with [ListView] to create an
|
|
/// "expand / collapse" list entry. When used with scrolling widgets liked_widget_bloc
|
|
/// [ListView], a unique [PageStorageKey] must be specified to enable the
|
|
/// [NoBorderExpansionTile] to save and restore its expanded state when it is scrolled
|
|
/// in and out of category_view.
|
|
///
|
|
/// See also:
|
|
///
|
|
/// * [ListTile], useful for creating expansion tile [children] when the
|
|
/// expansion tile represents a sublist.
|
|
/// * The "Expand/collapse" section of
|
|
/// <https://material.io/guidelines/components/lists-controls.html>.
|
|
class NoBorderExpansionTile extends StatefulWidget {
|
|
/// Creates a single-line [ListTile] with a trailing button that expands or collapses
|
|
/// the tile to reveal or hide the [children]. The [initiallyExpanded] property must
|
|
/// be non-null.
|
|
const NoBorderExpansionTile({
|
|
Key? key,
|
|
this.leading,
|
|
required this.title,
|
|
this.subtitle,
|
|
this.backgroundColor,
|
|
this.onExpansionChanged,
|
|
this.children = const <Widget>[],
|
|
this.trailing,
|
|
this.initiallyExpanded = false,
|
|
}) : super(key: key);
|
|
|
|
/// A widget to display before the title.
|
|
///
|
|
/// Typically a [CircleAvatar] widget.
|
|
final Widget? leading;
|
|
|
|
/// The primary content of the list item.
|
|
///
|
|
/// Typically a [Text] widget.
|
|
final Widget title;
|
|
|
|
/// Additional content displayed below the title.
|
|
///
|
|
/// Typically a [Text] widget.
|
|
final Widget? subtitle;
|
|
|
|
/// Called when the tile expands or collapses.
|
|
///
|
|
/// When the tile starts expanding, this function is called with the value
|
|
/// true. When the tile starts collapsing, this function is called with
|
|
/// the value false.
|
|
final ValueChanged<bool>? onExpansionChanged;
|
|
|
|
/// The widgets that are displayed when the tile expands.
|
|
///
|
|
/// Typically [ListTile] widgets.
|
|
final List<Widget> children;
|
|
|
|
/// The color to display behind the sublist when expanded.
|
|
final Color? backgroundColor;
|
|
|
|
/// A widget to display instead of a rotating arrow icon.
|
|
final Widget? trailing;
|
|
|
|
/// Specifies if the list tile is initially expanded (true) or collapsed (false, the default).
|
|
final bool initiallyExpanded;
|
|
|
|
@override
|
|
_NoBorderExpansionTileState createState() => _NoBorderExpansionTileState();
|
|
}
|
|
|
|
class _NoBorderExpansionTileState extends State<NoBorderExpansionTile> with SingleTickerProviderStateMixin {
|
|
static final Animatable<double> _easeOutTween = CurveTween(curve: Curves.easeOut);
|
|
static final Animatable<double> _easeInTween = CurveTween(curve: Curves.easeIn);
|
|
static final Animatable<double> _halfTween = Tween<double>(begin: 0.0, end: 0.5);
|
|
|
|
final ColorTween _borderColorTween = ColorTween();
|
|
final ColorTween _headerColorTween = ColorTween();
|
|
final ColorTween _iconColorTween = ColorTween();
|
|
final ColorTween _backgroundColorTween = ColorTween();
|
|
|
|
late AnimationController _controller;
|
|
late Animation<double> _iconTurns;
|
|
late Animation<double> _heightFactor;
|
|
late Animation<Color?> _headerColor;
|
|
late Animation<Color?> _iconColor;
|
|
late Animation<Color?> _backgroundColor;
|
|
|
|
bool _isExpanded = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_controller = AnimationController(duration: _kExpand, vsync: this);
|
|
_heightFactor = _controller.drive(_easeInTween);
|
|
_iconTurns = _controller.drive(_halfTween.chain(_easeInTween));
|
|
_headerColor = _controller.drive(_headerColorTween.chain(_easeInTween));
|
|
_iconColor = _controller.drive(_iconColorTween.chain(_easeInTween));
|
|
_backgroundColor = _controller.drive(_backgroundColorTween.chain(_easeOutTween));
|
|
|
|
_isExpanded = PageStorage.of(context)?.readState(context) ?? widget.initiallyExpanded;
|
|
if (_isExpanded) {
|
|
_controller.value = 1.0;
|
|
}
|
|
}
|
|
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
void _handleTap() {
|
|
setState(() {
|
|
_isExpanded = !_isExpanded;
|
|
if (_isExpanded) {
|
|
_controller.forward();
|
|
} else {
|
|
_controller.reverse().then<void>((void value) {
|
|
if (!mounted) {
|
|
return;
|
|
}
|
|
setState(() {
|
|
// Rebuild without widget.children.
|
|
});
|
|
});
|
|
}
|
|
PageStorage.of(context)?.writeState(context, _isExpanded);
|
|
});
|
|
widget.onExpansionChanged?.call(_isExpanded);
|
|
}
|
|
|
|
Widget _buildChildren(BuildContext context, Widget? child) {
|
|
|
|
return Container(
|
|
color: _backgroundColor.value ?? Colors.transparent,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
ListTileTheme.merge(
|
|
iconColor: _iconColor.value,
|
|
textColor: _headerColor.value,
|
|
child: ListTile(
|
|
onTap: _handleTap,
|
|
leading: widget.leading,
|
|
title: widget.title,
|
|
subtitle: widget.subtitle,
|
|
trailing: widget.trailing ?? RotationTransition(
|
|
turns: _iconTurns,
|
|
child: const Icon(Icons.expand_more),
|
|
),
|
|
),
|
|
),
|
|
ClipRect(
|
|
child: Align(
|
|
// alignment: Alignment.topCenter,
|
|
heightFactor: _heightFactor.value,
|
|
child: child,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void didChangeDependencies() {
|
|
final ThemeData theme = Theme.of(context);
|
|
_borderColorTween
|
|
.end = theme.dividerColor;
|
|
_headerColorTween
|
|
..begin = theme.textTheme.subtitle1!.color
|
|
..end = theme.accentColor;
|
|
_iconColorTween
|
|
..begin = theme.unselectedWidgetColor
|
|
..end = theme.accentColor;
|
|
_backgroundColorTween
|
|
.end = widget.backgroundColor;
|
|
super.didChangeDependencies();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final bool closed = !_isExpanded && _controller.isDismissed;
|
|
return AnimatedBuilder(
|
|
animation: _controller.view,
|
|
builder: _buildChildren,
|
|
child: closed ? null : Column(children: widget.children),
|
|
);
|
|
|
|
}
|
|
}
|