This repository has been archived on 2025-07-23. You can view files and clone it, but cannot push or open issues/pull-requests.
|
import 'package:flutter/material.dart';
|
|
|
|
class CostumDivider extends StatelessWidget {
|
|
const CostumDivider({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Divider(
|
|
color: Colors.grey.withOpacity(.5),
|
|
height: 1,
|
|
thickness: 1,
|
|
);
|
|
}
|
|
}
|