From 31624a3412587fb4254bdeb1530c3369f5bf09c4 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Wed, 14 Sep 2022 16:37:29 +0300 Subject: [PATCH] Remove BrandDivider and use vanilla instead. --- lib/ui/components/brand_divider/brand_divider.dart | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 lib/ui/components/brand_divider/brand_divider.dart diff --git a/lib/ui/components/brand_divider/brand_divider.dart b/lib/ui/components/brand_divider/brand_divider.dart deleted file mode 100644 index 646989a1..00000000 --- a/lib/ui/components/brand_divider/brand_divider.dart +++ /dev/null @@ -1,12 +0,0 @@ -import 'package:flutter/material.dart'; - -class BrandDivider extends StatelessWidget { - const BrandDivider({final super.key}); - - @override - Widget build(final BuildContext context) => Container( - width: double.infinity, - height: 1, - color: Theme.of(context).colorScheme.onSurface.withAlpha(30), - ); -}