Flutter阴影裁剪插件proste_shadow_clip的使用

发布于 1周前 作者 gougou168 来自 Flutter

Flutter阴影裁剪插件proste_shadow_clip的使用

proste_shadow_clip

用于裁剪并绘制阴影的部件,并且阴影会跟随裁剪路径。

使用方法

你可以使用 proste_bezier_curve 或者 flutter_custom_clippers 来创建裁剪器。

参数列表

参数名 参数类型
child Widget
shadow List<Shadow>
clipper CustomClipper<Path>
repaint bool?
key Key?

示例代码

Center(
  child: ProsteShadowClip(
    child: Container(
      width: 300,
      height: 100,
      color: Colors.pink,
    ),
    shadow: [
      BoxShadow(
        blurRadius: 5,
        spreadRadius: 2,
      ),
    ],
    clipper: MultipleRoundedCurveClipper(), // 创建一个自定义裁剪器
  ),
);

完整示例代码

以下是一个完整的示例代码,展示了如何使用 ProsteShadowClip 插件来裁剪并绘制带有阴影的组件。

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

import 'package:flutter_custom_clippers/flutter_custom_clippers.dart';
import 'package:proste_bezier_curve/proste_bezier_curve.dart';
import 'package:proste_shadow_clip/proste_shadow_clip.dart';

void main() {
  runApp(MyApp());
  SystemChrome.setPreferredOrientations(
      [DeviceOrientation.portraitUp, DeviceOrientation.portraitDown]);
  SystemUiOverlayStyle style = SystemUiOverlayStyle(
    statusBarColor: Colors.transparent,
  );
  SystemChrome.setSystemUIOverlayStyle(style);
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyAppHome(),
    );
  }
}

class MyAppHome extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(),
      body: ListView(
        children: [
          SizedBox(height: 10),
          Center(
            child: ProsteShadowClip(
              child: Container(
                width: 300,
                height: 100,
                color: Colors.pink,
              ),
              shadow: [
                BoxShadow(
                  blurRadius: 5,
                  spreadRadius: 2,
                ),
              ],
              clipper: MultipleRoundedCurveClipper(),
            ),
          ),
          SizedBox(height: 10),
          Center(
            child: ProsteShadowClip(
              child: Container(
                width: 300,
                height: 100,
                color: Colors.green,
              ),
              shadow: [
                BoxShadow(
                  blurRadius: 5,
                  spreadRadius: 2,
                ),
              ],
              clipper: MessageClipper(),
            ),
          ),
          SizedBox(height: 10),
          Center(
            child: ProsteShadowClip(
              child: Container(
                width: 300,
                height: 100,
                color: Colors.yellow,
              ),
              shadow: [
                BoxShadow(
                  blurRadius: 12,
                  spreadRadius: 5,
                ),
              ],
              clipper: ProsteBezierCurve(
                position: ClipPosition.bottom,
                list: [
                  BezierCurveSection(
                    start: Offset(0, 50),
                    end: Offset(300, 50),
                    top: Offset(150, 100),
                  ),
                ],
              ),
            ),
          ),
          SizedBox(height: 10),
          Center(
            child: ProsteShadowClip(
              child: Container(
                width: 300,
                height: 150,
                color: Colors.blue,
              ),
              shadow: [
                BoxShadow(
                  blurRadius: 12,
                  spreadRadius: 5,
                  offset: Offset(-10, 15),
                ),
                BoxShadow(
                  blurRadius: 12,
                  spreadRadius: 5,
                  color: Colors.red,
                  offset: Offset(10, -5),
                ),
              ],
              clipper: ProsteBezierCurve(
                position: ClipPosition.bottom,
                list: [
                  BezierCurveSection(
                    start: Offset(0, 75),
                    top: Offset(300 / 4, 100),
                    end: Offset(300 / 2, 75),
                  ),
                  BezierCurveSection(
                    start: Offset(300 / 2, 75),
                    top: Offset(300 / 4 * 3, 50),
                    end: Offset(300, 100),
                  ),
                ],
              ),
            ),
          ),
        ],
      ),
    );
  }
}

如果你在使用过程中有任何建议或问题,请欢迎提交 issue,我会定期检查并回复。

许可证

MIT License

Copyright (c) 2021 xyhxx

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

更多关于Flutter阴影裁剪插件proste_shadow_clip的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter阴影裁剪插件proste_shadow_clip的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是如何在Flutter项目中使用proste_shadow_clip插件的示例代码。proste_shadow_clip插件允许你为Widget添加阴影效果并裁剪多余的部分。以下是一个简单的示例,展示了如何使用该插件。

首先,确保你已经在pubspec.yaml文件中添加了proste_shadow_clip依赖:

dependencies:
  flutter:
    sdk: flutter
  proste_shadow_clip: ^最新版本号  # 请替换为最新的版本号

然后运行flutter pub get来安装依赖。

接下来,在你的Flutter项目中创建一个使用ProsteShadowClip的示例:

import 'package:flutter/material.dart';
import 'package:proste_shadow_clip/proste_shadow_clip.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('ProsteShadowClip Example'),
        ),
        body: Center(
          child: ProsteShadowClip(
            // 阴影配置
            shadowColor: Colors.black.withOpacity(0.5), // 阴影颜色
            shadowBlur: 10.0, // 阴影模糊半径
            shadowOffsetX: 5.0, // 阴影X轴偏移
            shadowOffsetY: 5.0, // 阴影Y轴偏移
            // 被裁剪的子Widget
            child: Container(
              width: 200,
              height: 200,
              color: Colors.blue,
              child: Center(
                child: Text(
                  'Hello, Shadow!',
                  style: TextStyle(color: Colors.white, fontSize: 24),
                ),
              ),
            ),
          ),
        ),
      ),
    );
  }
}

在这个示例中,我们做了以下几步:

  1. 导入必要的包:导入了flutter/material.dartproste_shadow_clip/proste_shadow_clip.dart
  2. 创建主应用:在MyApp中,我们创建了一个MaterialApp,其中包含一个ScaffoldScaffold中包含一个AppBar和一个居中的Center
  3. 使用ProsteShadowClip:在Center中,我们使用了ProsteShadowClip来包裹一个ContainerProsteShadowClip接受几个参数来配置阴影效果,包括阴影颜色、模糊半径和偏移量。
  4. 定义被裁剪的子WidgetContainer设置了宽度、高度、背景颜色和居中的文本。

运行这个应用,你将看到一个带有阴影效果的蓝色方块,阴影被裁剪到方块的外围。

请根据你的具体需求调整阴影参数和子Widget的布局。这个插件非常适合用于需要精细控制阴影效果和裁剪的场景。

回到顶部