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,
                  ),
                ),
              )),
        ],
      ),
    );
  }
}
相关推荐
残冬醉离殇4 分钟前
🔥 什么?不用鼠标点击也能触发点击事件???前端工程师的认知塌了!
前端·javascript
前端小咸鱼一条11 分钟前
14. setState是异步更新
开发语言·前端·javascript
gustt28 分钟前
JavaScript 字符串深度解析:模板字符串与常用方法详解
前端·javascript·代码规范
UIUV28 分钟前
JavaScript 入门笔记:从基础语法到现代特性
前端·javascript
无知就要求知36 分钟前
golang封装可扩展的crontab
开发语言·后端·golang
weixin_4672092841 分钟前
Qt Creator打开项目提示no valid settings file could be found
开发语言·qt
Mintopia1 小时前
⚙️ 用 Next.js 玩转压测:**200 Requests/s 的华丽舞步**
前端·javascript·全栈
Mintopia1 小时前
🌐 AIGC与知识图谱:Web端智能问答系统的技术核心
前端·javascript·aigc
国服第二切图仔1 小时前
Rust开发之使用match和if let处理Result错误
开发语言·网络·rust
2501_938773991 小时前
从字节码生成看 Lua VM 前端与后端协同:编译器与执行器衔接逻辑
开发语言·前端·lua