Translate-Flutter/lib/widget/divider_widget.dart
fengshengxiong 70d663706c 第一版
2024-07-12 11:26:44 +08:00

22 lines
455 B
Dart

// Author: fengshengxiong
// Date: 2024/5/9
// Description: 分割线
import 'package:flutter/material.dart';
class DividerWidget extends StatelessWidget {
const DividerWidget({super.key, this.height, this.color});
final double? height;
final Color? color;
@override
Widget build(BuildContext context) {
return Divider(
height: height ?? 1,
thickness: height ?? 1,
color: color ?? const Color(0xFFEDEDED),
);
}
}