Remove BrandDivider and use vanilla instead.

pull/116/head
Inex Code 2022-09-14 16:37:29 +03:00
parent 7e10c1324c
commit 31624a3412
1 changed files with 0 additions and 12 deletions

View File

@ -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),
);
}