Fullscreen: fixed overlay update after renaming
This commit is contained in:
parent
14cf1b3edf
commit
7958fa33eb
1 changed files with 4 additions and 3 deletions
|
@ -112,18 +112,19 @@ const double _iconSize = 16.0;
|
||||||
const double _interRowPadding = 2.0;
|
const double _interRowPadding = 2.0;
|
||||||
const double _subRowMinWidth = 300.0;
|
const double _subRowMinWidth = 300.0;
|
||||||
|
|
||||||
class _FullscreenBottomOverlayContent extends StatelessWidget {
|
class _FullscreenBottomOverlayContent extends AnimatedWidget {
|
||||||
final ImageEntry entry;
|
final ImageEntry entry;
|
||||||
final OverlayMetadata details;
|
final OverlayMetadata details;
|
||||||
final String position;
|
final String position;
|
||||||
final double maxWidth;
|
final double maxWidth;
|
||||||
|
|
||||||
const _FullscreenBottomOverlayContent({
|
_FullscreenBottomOverlayContent({
|
||||||
|
Key key,
|
||||||
this.entry,
|
this.entry,
|
||||||
this.details,
|
this.details,
|
||||||
this.position,
|
this.position,
|
||||||
this.maxWidth,
|
this.maxWidth,
|
||||||
});
|
}) : super(key: key, listenable: entry.metadataChangeNotifier);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
Loading…
Reference in a new issue