如何在Flutter中制作图片从右到左的动画

3

如何在Flutter中制作这种类型的动画?

我附上了一个YouTube视频。我已经做了很多动画,但没有一个能解决我现在面临的问题。

请导入此代码:awesome_slider: ^0.1.0

这是我尝试过的代码:

  class Submits extends StatefulWidget {
  Submits({Key key}) : super(key: key);

  @override
  _SubmitsState createState() => _SubmitsState();
}

class _SubmitsState extends State<Submits> {

  int valuess = 0;
   List itemWidget = [
           AnimatedContainer(
                           transform:Matrix4.translationValues(0, 0, 0) ,
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                       child: Center(
                         child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                         
                      ),
                       ),
                    
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.red,Colors.red]),
                   
                     color: Colors.blue,
                
                    ),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),
        AnimatedContainer(
               transform:Matrix4.translationValues(10, 0, 0) ,
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                        child: Center(
                        child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                          child: Text("To a very little extent"),
                        ),
                      ),
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.red,Colors.orange]),
                     image: DecorationImage(image: AssetImage("assets/images/Artboard 1.png")),
                     color: Colors.blue,),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),

                   AnimatedContainer(
                      transform:Matrix4.translationValues(10, 0, 0) ,
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                       child: Center(
                         child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                          child: Text("To a little extent"),
                      ),
                       ),
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.orange,Colors.yellow]),
                     image: DecorationImage(image: AssetImage("assets/images/Artboard 2.png")),
                     color: Colors.blue, ),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),

                       AnimatedContainer(
                          transform:Matrix4.translationValues(0,0, 0) ,
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                       child: Center(
                         child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                          child: Text("To some extent"),
                      ),
                       ),
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.orange,Colors.green]),
                     image: DecorationImage(image: AssetImage("assets/images/Artboard 3.png")),
                     color: Colors.blue,
                
                    ),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),

                    AnimatedContainer(
                       transform:Matrix4.translationValues(0,0, 0) ,
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                       child: Center(
                         child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                          child: Text("To a great extent"),
                      ),
                       ),
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.yellow,Colors.green]),
                     image: DecorationImage(image: AssetImage("assets/images/Artboard 4.png")),
                     color: Colors.blue,
                
                    ),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),

                        AnimatedContainer(
                    // Use the properties stored in the State class.
                      key: UniqueKey(),
                       child: Center(
                         child: Padding(
                          padding: const EdgeInsets.fromLTRB(10,240,0,0),
                          child: Text("To a very great extent"),
                      ),
                       ),
                    width: 400,
                    height: 300,
                    decoration: BoxDecoration(
                      gradient: LinearGradient(colors: [Colors.green,Colors.green]),
                     image: DecorationImage(image: AssetImage("assets/images/Artboard 5.png")),
                     color: Colors.blue,
                
                    ),
                    // Define how long the animation should take.
                    duration: Duration(seconds: 0),
                    // Provide an optional curve to make the animation feel smoother.
                    curve: Curves.elasticInOut,
                  ),
                    
  ];



   @override
  Widget build(BuildContext context) {
    return Scaffold(

body: Center(
  child:   Container(
                                    child: Column(children: [
                                  Container(
              height:300,
              width: 400,
              child: AnimatedSwitcher(
                switchInCurve: Curves.linear,
                 child: itemWidget[valuess],
                 duration: Duration(seconds: 1), ), ),
  
             AwesomeSlide(
  
                    value: valuess.toDouble(),
                    min: 0, 
                    max: 5,
                    thumbSize: 80.0,
                    inactiveLineColor: Colors.grey,
                    activeLineColor:Color(0xffe64a19),
                    child: Material(
  
                                type: MaterialType.card,
                                color: Colors.transparent,
                                child: Image.asset( "assets/images/SliderTop.png"),),
  
                        onChanged: (value) {
  
                        valuess = value.toInt();
                            setState(() {
                              
                            });   },
  
                  ),
   ], ), 
  ),
),

    );
  }
}
1个回答

8

可以通过 PageViewListViewStack 来实现。

enter image description here

这是完整的代码:

使用PageView,因此它也可以滚动。

class ViwerWidget extends HookWidget {
  @override
  Widget build(BuildContext context) {
    final size = MediaQuery.of(context).size;

    ValueNotifier<double> page = useValueNotifier(0.0);

    final viewportFraction = 0.5;

    final pageWidth = size.width * 0.5;

    final pageController = usePageController(
      viewportFraction: viewportFraction,
    );

    pageController.addListener(() {
      page.value = pageController.page!;
    });

    final pages = [
      Icon(
        Icons.ac_unit,
        size: 100,
      ),
      Icon(
        Icons.access_alarm_rounded,
        size: 100,
      ),
      Icon(
        Icons.accessibility_new,
        size: 100,
      ),
      Icon(
        Icons.account_box_rounded,
        size: 100,
      ),
    ];

    return Scaffold(
      body: Column(
        children: [
          SizedBox(height: 100),
          Container(
            color: Colors.red,
            width: pageWidth,
            height: 300,
            child: PageView.builder(
              controller: pageController,
              itemCount: pages.length,
              pageSnapping: false,
              itemBuilder: (context, index) => ValueListenableBuilder<double>(
                valueListenable: page,
                builder: (context, value, child) {
                  final scale = (value - index + 1).abs() * 2;

                  final opacity = (1 - ((value - index).abs())).clamp(0.0, 1.0);

                  return Opacity(
                    opacity: opacity,
                    child: Transform.scale(
                      scale: scale,
                      child: pages[index],
                    ),
                  );
                },
              ),
            ),
          ),
          Spacer(),
          ValueListenableBuilder<double>(
            valueListenable: page,
            builder: (context, value, child) => Slider(
              value: value,
              max: pages.length - 1,
              min: 0.0,
              onChanged: (value) {
                page.value = value;
                pageController.jumpTo(value * pageWidth * viewportFraction);
              },
            ),
          )
        ],
      ),
    );
  }
}

当然,您可以通过调整数值来实现所需的结果。


非常感谢你,兄弟。你做得很好,达到了100%的效果。这个屏幕有两个部分。当我使用滑块时,第一部分会发生变化;当我在图片上使用手势检测器时,同样的动画也会发生变化。如果你能帮我解决这个问题,我将不胜感激。 - benten
如果我将此堆栈放入TransformerPageView中,这个动画能否像我使用滑块时一样工作? - benten
我只是想要简单地实现一个功能,就像当一个人使用滑块时,如果在屏幕上滑动,相同的动画效果也会发生。 - benten
使用 usePageController( viewportFraction: viewportFraction, ); 出现错误..我使用了 hook 库..但它没有解决 usePageController 的问题。 - benten

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接