web-dev-qa-db-ja.com

FlutterでListViewアイテムを全画面にアニメーション化する

リスト項目をタップしたときに このアニメーション (- mp4 )が実行されるようにします。 AnimatedCrossFadeを使用してみましたが、2つの子が同じレベルである必要があります。詳細ビューは、タップされたアイテムではなく、ListViewとクロスフェードします。実際、ウィジェット間でアニメーション化できるアニメーションはHeroのみであるようです。

Heroの使用に問題があります。リストアイテムをラップする必要がありますか?ウィジェットのサブツリーがヒーローのソース/宛先で大幅に異なる場合、問題になりますか?また、ヒーローアニメーションをLocalHistoryRoutesまたは 互い違いアニメーション で使用できますか?

編集

今、私がする必要があるのは、Overlayを使用することのように見えます。難しい部分は、選択されたアイテムを、タップされた画面上の同じ位置でオーバーレイに追加する必要があることです。その後、アニメーション部分は簡単になります。ここで使用される可能性があるのは、ターゲット/フォロワーパターンです。 CompositedTransformTarget

9
Jacob Phillips

Heroウィジェットを使用して、この種のアニメーションを作成できます。これが私の例です:

enter image description here

そしてソースコード:

import 'package:flutter/material.Dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new FirstPage(title: 'Color Palette'),
    );
  }
}

class FirstPage extends StatefulWidget {
  FirstPage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _FirstPageState createState() => new _FirstPageState();
}

class _FirstPageState extends State<FirstPage> {
  final palette = [
    {'#E53935': 0xFFE53935},
    {'#D81B60': 0xFFD81B60},
    {'#8E24AA': 0xFF8E24AA},
    {'#5E35B1': 0xFF5E35B1},
    {'#3949AB': 0xFF3949AB},
    {'#1E88E5': 0xFF1E88E5},
    {'#039BE5': 0xFF039BE5},
    {'#00ACC1': 0xFF00ACC1},
    {'#00897B': 0xFF00897B},
    {'#43A047': 0xFF43A047},
    {'#7CB342': 0xFF7CB342},
    {'#C0CA33': 0xFFC0CA33},
  ];

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text(widget.title),
      ),
      body: new Container(
        child: new ListView.builder(
            itemCount: palette.length,
            itemBuilder: (context, index) => new Hero(
                  tag: palette[index].keys.first,
                  child: new GestureDetector(
                    onTap: () {
                      Navigator
                          .of(context)
                          .Push(new ColorPageRoute(palette[index]));
                    },
                    child: new Container(
                      height: 64.0,
                      width: double.infinity,
                      color: new Color(palette[index].values.first),
                      child: new Center(
                        child: new Hero(
                          tag: 'text-${palette[index].keys.first}',
                          child: new Text(
                            palette[index].keys.first,
                            style: Theme.of(context).textTheme.title.copyWith(
                                  color: Colors.white,
                                ),
                          ),
                        ),
                      ),
                    ),
                  ),
                )),
      ),
    );
  }
}

class SecondPage extends StatelessWidget {
  final Map<String, int> color;

  SecondPage({this.color});

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text('Color'),
      ),
      body: new Hero(
        tag: color.keys.first,
        child: new Container(
          color: new Color(color.values.first),
          child: new Center(
            child: new Hero(
              tag: 'text-${color.keys.first}',
              child: new Text(
                color.keys.first,
                style:
                    Theme.of(context).textTheme.title.copyWith(color: Colors.white),
              ),
            ),
          ),
        ),
      ),
    );
  }
}

class ColorPageRoute extends MaterialPageRoute {
  ColorPageRoute(Map<String, int> color)
      : super(
            builder: (context) => new SecondPage(
                  color: color,
                ));

  @override
  Widget buildTransitions(BuildContext context, Animation<double> animation,
      Animation<double> secondaryAnimation, Widget child) {
    return FadeTransition(opacity: animation, child: child);
  }
}
24
hunghd

私はただすべてをスタックにチートしてラップします-一番下のレイヤーはAppBarのあるページになり、一番上のレイヤーはペイントされるまで透明になります。

onTap、ListTileを上面に複製すると、ヒーローアニメーションが全画面に表示されます。あまりエレガントではありませんが、フレームワークはAppBarを簡単にカバーすることを提供していません。そのため、他のトリッキーなアニメーションのためにキャンバスをペイントする準備ができているかもしれません。

0
Christian