15 lines
343 B
Dart
15 lines
343 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CustomDivider extends StatelessWidget {
|
|
const CustomDivider({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Divider(
|
|
color: Colors.grey.shade300,
|
|
thickness: 1, // Set thickness to 1px
|
|
height: 1, // Set height to 1px to reduce padding
|
|
);
|
|
}
|
|
}
|