You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
579 B
25 lines
579 B
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class ASDivider extends StatelessWidget {
|
|
final Color color;
|
|
final double height;
|
|
final double indent;
|
|
final double endIndent;
|
|
ASDivider({Key key, this.indent, this.endIndent})
|
|
: color = const Color(0xFFE9E9E9),
|
|
height = 1.w,
|
|
super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Divider(
|
|
color: color,
|
|
height: height,
|
|
thickness: height,
|
|
indent: indent,
|
|
endIndent: endIndent,
|
|
);
|
|
}
|
|
}
|