Flutter实战小案例

(实战)点不到的按钮

dart 复制代码
// 主要实现效果类
class _MyHomePageState extends State<MyHomePage> {
  // 1.定义要使用的变量
  double btnLeft = 0;
  double btnTop = 0;
  int timeDuration = 500;
  String textButton = "点我呀";
  // 2.获得当前设备屏幕尺⼨,需要import 'dart:ui'
  var s = window.physicalSize / window.devicePixelRatio;
  // 3.新建⼀个随机对象,import 'dart:math';
  var rng = new Random()
  // 4.初始化init变量的值  
  @override
  void initState() {
    randomPosition();
    super.initState();
  }
  // 5.随机变化left和top的值
  randomPosition() {
    setState(() {
      btnLeft = rng.nextDouble() * (s.width - 100);
      btnTop = rng.nextDouble() * (s.height - 40);
    });
  }
 // 6.widgets渲染
  @override
  Widget build(BuildContext context) {
    return Stack(
      children: [
        AnimatedPositioned(
            duration: Duration(milliseconds: timeDuration),
            left: btnLeft,
            top: btnTop,
            width: 100,
            height: 40,
            child: ElevatedButton(
              onPressed: randomPosition,
              child: Text(textButton),
            ))
      ],
    );
  }
}

(实战)点不到的按钮修改

  • 修改按钮的宽200和⾼80
  • 设置背景⾊ rgb 值为 136, 138, 226
  • 按钮文本颜⾊设置为黑⾊
  • 文本设置为:初次见面
dart 复制代码
class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  double btnLeft = 0;
  double btnTop = 0;
  int timeDuration = 500;
  String textButton = "初次见面";
  var s = window.physicalSize / window.devicePixelRatio;
  var rng = Random();
  // 创建背景颜色对象
  var backColor = const BoxDecoration(color: Color.fromRGBO(136, 138, 226, 1));
  @override
  void initState() {
    randomPosition();
    super.initState();
  }

  randomPosition() {
    setState(() {
      btnLeft = Random().nextDouble() * (s.width - 100);
      btnTop = Random().nextDouble() * (s.height - 40);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Container(
      decoration: backColor,
      child: Stack(
        children: [
          Positioned(
              left: btnLeft,
              top: btnTop,
              width: 200,
              height: 80,
              child: ElevatedButton(
                onPressed: randomPosition,
                child: Text(
                  textButton,
                  // 修改文本颜色
                  style: const TextStyle(
                    color: Colors.black,
                  ),
                ),
              )),
        ],
      ),
    );
  }
}
相关推荐
theOtherSky6 小时前
element+vue3 table上下左右键切换input和select
javascript·vue.js·elementui·1024程序员节
会联营的陆逊7 小时前
JavaScript 如何优雅的实现一个时间处理插件
javascript
over6977 小时前
浏览器里的AI魔法:用JavaScript玩转自然语言处理
前端·javascript
「QT(C++)开发工程师」7 小时前
【LUA教程】LUA脚本语言中文教程.PDF
开发语言·pdf·lua
Amy_cx7 小时前
搭建React Native开发环境
javascript·react native·react.js
代码AI弗森7 小时前
Python × NumPy」 vs 「JavaScript × TensorFlow.js」生态全景图
javascript·python·numpy
疏狂难除7 小时前
关于spiderdemo第二题的奇思妙想
javascript·爬虫
程序定小飞7 小时前
基于springboot的民宿在线预定平台开发与设计
java·开发语言·spring boot·后端·spring
渣渣盟7 小时前
探索Word2Vec:从文本向量化到中文语料处理
前端·javascript·python·文本向量化
天天进步20158 小时前
Python全栈项目--基于计算机视觉的车牌识别系统
开发语言·python·计算机视觉