• 【Flutter】应用广告页面-3秒后跳转


    flutter 广告页-3秒读数后或者点击跳过广告按钮后跳转

    /**
     * 广告页,3秒自动跳转到首页
     */
    
    import 'dart:async';
    
    import 'package:flutter/material.dart';
    
    
    class SplashScreen extends StatefulWidget {
      @override
      _SplashScreenState createState() => new _SplashScreenState();
    }
    
    class _SplashScreenState extends State<SplashScreen> {
      Timer _timer;
      int count = 3;
    
      startTime() async {
        //设置启动图生效时间
        var _duration = new Duration(seconds: 1);
        new Timer(_duration, () {
          // 空等1秒之后再计时
          _timer = new Timer.periodic(const Duration(milliseconds: 1000), (v) {
            count--;
            if (count == 0) {
              navigationPage();
            } else {
              setState(() {});
            }
          });
          return _timer;
        });
      }
    
      void navigationPage() {
        _timer.cancel();
        Navigator.of(context).pushReplacementNamed('/main');//要跳转的页面
      }
    
      @override
      void initState() {
        super.initState();
        startTime();
      }
    
      @override
      Widget build(BuildContext context) {
        return new Stack(
          alignment: const Alignment(1.0, -1.0), // 右上角对齐
          children: [
            new ConstrainedBox(
              constraints: BoxConstraints.expand(),
              child: new Image.asset(
                "assets/images/ad.jpg",//广告图
                fit: BoxFit.fill,
              ),
            ),
            new Padding(
              padding: new EdgeInsets.fromLTRB(0.0, 30.0, 10.0, 0.0),
              child: new FlatButton(
                onPressed: () {
                  navigationPage();
                },
    //            padding: EdgeInsets.all(0.0),
                color: Colors.grey,
                child: new Text(
                  "$count 跳过广告",
                  style: new TextStyle(color: Colors.white, fontSize: 12.0),
                ),
              ),
            )
          ],
        );
      }
    }
  • 相关阅读:
    给div添加disabled属性
    11个让你吃惊的 Linux 终端命令
    在 Linux 平台中调试 C/C++ 内存泄漏方法(转)
    在压缩话单中过滤指定IP的一个小脚本
    过滤IP地址的正则表达式
    【转】网络编程知识
    linux下软链接与硬链接及其区别
    函数式编程入门教程(转)
    suricate学习笔记1--初步认识(转)
    lsof命令详解(转)
  • 原文地址:https://www.cnblogs.com/sangwl/p/11435191.html
Copyright © 2020-2023  润新知