1.介绍
该Widget
主要用于Container
的 Decoration Border
,可实现虚线边框
2.如何使用?
- 添加依赖
在命令行中切换到项目的根目录,添加下面的命令,按下回车键,等待即可
flutter pub add r_dotted_line_border
- 导入插件包
import 'package:r_dotted_line_border/r_dotted_line_border.dart';
- 参数解释
参数类型 | 参数名 | 介绍 |
---|---|---|
double | dottedLength | 虚线长度 |
double | dottedSpace | 虚线间隙 |
… | … | 其它参数与Border类似 |
- 简单使用
Container(
width: 100,
height: 100,
decoration: BoxDecoration(
border: RDottedLineBorder.all(
width: 1,
),
),
);
暂无评论内容