【Flutter】【基础】CustomPaint 绘画功能(一)

功能:CustomPaint

  • 相当于在一个画布上面画画,可以自己绘制不同的颜色形状等
  • 在各种widget 或者是插件不能满足到需求的时候,可以自己定义一些形状

使用实例和代码:

CustomPaint: 能使你绘制的东西显示在你的ui 上面,

painter=》child=》oregroundPainter,foregroundPainter最外面的一层会覆盖painter,child 层里面的widget.

dart 复制代码
 return Container(
   //painter 绘制完成之后需要再CustomPaint 里面构建称为widget
   child: Center(
     child: CustomPaint(
       child: Icon(
         Icons.abc,
         size: 40,
         color: Colors.red,
       ),
       painter: MybackGroudnPaiter(), //最内一层
       //  child: ,//子组件,在中间
       foregroundPainter: ForegroundPainter(), //最外面一层,也是  CustomPainter
     ),
   ),
 );

CustomPainter 绘制

dart 复制代码
class MybackGroudnPaiter extends CustomPainter {
  @override
  void paint(Canvas canvas, Size size) {
    //canvas 画布,size 画布的尺寸
    //在这边绘制
    // canvas.drawColor(Colors.red, BlendMode.color);
    var centerp = size / 2;
    //定义画笔是什么颜色,样式,画笔的宽度
    var paint = Paint()
      ..color = Colors.teal
      ..style = PaintingStyle.fill
      ..strokeWidth = 2.0;
    canvas.drawRect(
        Rect.fromLTWH(centerp.width - 100, centerp.height - 100, 200, 200),
        paint);
  }

  @override
  bool shouldRepaint(covariant CustomPainter oldDelegate) {
    return true;
  }
}

class ForegroundPainter extends CustomPainter {
  @override
  void paint(Canvas canvas, Size size) {
    var centerp = size / 2;
    //定义画笔是什么颜色,样式,画笔的宽度
    var paint = Paint()
      ..color = Colors.pink
      ..style = PaintingStyle.fill
      ..strokeWidth = 2.0;
    canvas.drawRect(
        Rect.fromLTWH(centerp.width - 130, centerp.height - 130, 200, 200),
        paint);
  }

  @override
  bool shouldRepaint(covariant CustomPainter oldDelegate) {
    // TODO: implement shouldRepaint
    return true;
  }
}

绘画的能力

我们绘制1000个彩色点点,从上往下掉落,看看性能,没有任何的卡顿,真给力

dart 复制代码
import 'dart:math';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: MyHomePage(
          title: 'jack ma',
        ),
      ),
    );
  }
}

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>
    with SingleTickerProviderStateMixin {
  late AnimationController _controller;
  final List<Snowflake> _snowflakes =
      List.generate(1000, (index) => Snowflake());

  @override
  void initState() {
    ;
    _controller =
        AnimationController(vsync: this, duration: const Duration(seconds: 5))
          ..repeat();
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        body: Center(
      child: SizedBox(
        width: double.infinity,
        height: double.infinity,
        child: AnimatedBuilder(
          animation: _controller,
          builder: (BuildContext context, Widget? child) {
            //一直在这边build,5s 动画运行时间
            for (var snow in _snowflakes) {
              snow.fall();
            }
            return CustomPaint(
              painter: MyPainter(_snowflakes),
            );
          },
        ),
      ),
    ));
  }
}

class MyPainter extends CustomPainter {
  final List<Snowflake> _snowflakes;
  MyPainter(this._snowflakes);

  @override
  void paint(Canvas canvas, Size size) {
    final whitePaint = Paint()..color = Colors.grey;

    for (int i = 0; i < 1000; i++) {
      whitePaint.color = Colors.primaries[i % Colors.primaries.length];
      canvas.drawCircle(Offset(_snowflakes[i].x, _snowflakes[i].y),
          _snowflakes[i].radius, whitePaint);
    }
  }

  @override
  bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
}

class Snowflake {
  double x = Random().nextDouble() * 400;
  double y = Random().nextDouble() * 800;
  double radius = Random().nextDouble() * 2 + 2;
  double velocity = Random().nextDouble() * 4 + 2;
  void fall() {
    y += velocity;
    if (y > 800) {
      y = 0;
      x = Random().nextDouble() * 400;
      radius = Random().nextDouble() * 2 + 2;
      velocity = Random().nextDouble() * 4 + 2;
    }
  }
}
相关推荐
To_OC7 小时前
LC 51 N 皇后:我以为难的是回溯,结果栽在了对角线下标
javascript·算法·leetcode
Scott9999HH7 小时前
【IIoT流量实战】蒸汽管道阀门全关却仍有流量?用 Python 实现涡街信号 FFT 频谱分析与温压全补偿积算网关,深度拆解靠谱的涡街流量计厂家硬核技术标准
开发语言·python
码智社8 小时前
AES加密原理详解及Java实现加解密实战
java·开发语言
AI云海8 小时前
python 列表、元组、集合和字典
开发语言·python
小林ixn9 小时前
从零到一理解 React 父子组件通信:手写一个 Todo 应用带你彻底搞懂单向数据流
前端·javascript·react.js
萧瑟余晖9 小时前
JDK 26 新特性详解
java·开发语言
马优晨10 小时前
Freemarker 完整讲解(后端 Java 模板引擎)
java·开发语言·freemarker·freemarker 完整讲解·freemarker模板引擎
窝子面11 小时前
手搓最简前后端协作-node
javascript·数据库
人邮异步社区12 小时前
怎么把C语言学到精通?
c语言·开发语言
kyriewen12 小时前
我让AI给前端项目做了一次完整的Code Review——它和人类的差距,比我想的大得多
前端·javascript·ai编程