소스 검색

Remove unused component

Neeraj Gupta 2 년 전
부모
커밋
42d6d14017
1개의 변경된 파일0개의 추가작업 그리고 24개의 파일을 삭제
  1. 0 24
      lib/ui/common/divider_with_padding.dart

+ 0 - 24
lib/ui/common/divider_with_padding.dart

@@ -1,24 +0,0 @@
-import 'package:flutter/material.dart';
-
-class DividerWithPadding extends StatelessWidget {
-  final double left, top, right, bottom, thickness;
-
-  const DividerWithPadding({
-    Key? key,
-    this.left = 0,
-    this.top = 0,
-    this.right = 0,
-    this.bottom = 0,
-    this.thickness = 0.5,
-  }) : super(key: key);
-
-  @override
-  Widget build(BuildContext context) {
-    return Padding(
-      padding: EdgeInsets.fromLTRB(left, top, right, bottom),
-      child: Divider(
-        thickness: thickness,
-      ),
-    );
-  }
-}