程序问答   发布时间:2022-06-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何在Flutter中设置“警报”对话框位置的动画? 扑大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

如何解决如何在Flutter中设置“警报”对话框位置的动画? 扑?

开发过程中遇到如何在Flutter中设置“警报”对话框位置的动画? 扑的问题如何解决?下面主要结合日常开发的经验,给出你关于如何在Flutter中设置“警报”对话框位置的动画? 扑的解决方法建议,希望对你解决如何在Flutter中设置“警报”对话框位置的动画? 扑有所启发或帮助;

floatingActionbutton: floatingActionbutton(
  onpressed: () {
    showGeneralDialog(
      barrIErLabel: "Label",
      barrIErdismissible: true,
      barrIErcolor: colors.black.withOpacity(0.5),
      TransitionDuration: Duration(milliseconds: 700),
      context: context,
      pageBuilder: (context, anim1, anim2) {
        return Align(
          alignment: Alignment.bottomCenter,
          child: Container(
            height: 300,
            child: SizedBox.expand(child: Flutterlogo()),
            margin: EdgeInsets.only(bottom: 50, left: 12, right: 12),
            decoration: Boxdecoration(
              color: colors.white,
              borderRadius: borderRadius.circular(40),
            ),
          ),
        );
      },
      TransitionBuilder: (context, anim1, anim2, child) {
        return SlIDeTransition(
          position: Tween(begin: Offset(0, 1), end: Offset(0, 0)).animate(anim1),
          child: child,
        );
      },
    );
  },
)

解决方法

通过此简单代码,我可以在屏幕底部显示对话框,如以下

但是我有三个简单的问题:

  1. 在对话框底部(例如20.0在显示对话框上)设置边距
  2. .reverse()上解雇对话框
  3. 单击对话框外部以关闭对话框

完整的源代码:

import 'package:flutter/material.dart';

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

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

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  void showPopup() {
    showDialog(
      context: context,builder: (_) => PopUp(),);
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,children: <Widget>[
            Text(
              'You have pushed the button this many times:',],floatingActionButton: FloatingActionButton(
        onPressed: showPopup,tooltip: 'Increment',child: Icon(Icons.add),// This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

class PopUp extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => PopUpState();
}

class PopUpState extends State<PopUp> with SingleTickerProviderStateMixin {
  AnimationController controller;
  Animation<double> opacityAnimation;
  Tween<double> opacityTween = Tween<double>(begin: 0.0,end: 1.0);
  Tween<double> marginTopTween = Tween<double>(begin: 300,end: 280);
  Animation<double> marginTopAnimation;

  @override
  void initState() {
    super.initState();

    controller = AnimationController(duration: const Duration(milliseconds: 300),vsync: this);
    marginTopAnimation = marginTopTween.animate(controller)
      ..addListener(() {
        setState(() {});
      });
    controller.forward();
  }

  @override
  Widget build(BuildContext context) {
    return FadeTransition(
      opacity: opacityTween.animate(controller),child: Material(
        color: Colors.transparent,child: Container(
          margin: EdgeInsets.only(
            top: marginTopAnimation.value,left:20.0,right:20.0,color: Colors.red,child: Text("Container"),);
  }

  @override
  void dispose() {
    controller.dispose();
    super.dispose();
  }
}

大佬总结

以上是大佬教程为你收集整理的如何在Flutter中设置“警报”对话框位置的动画? 扑全部内容,希望文章能够帮你解决如何在Flutter中设置“警报”对话框位置的动画? 扑所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: