selfprivacy.org.app/lib/ui/components/brand_divider/brand_divider.dart

17 lines
367 B
Dart
Raw Normal View History

2020-12-02 11:16:23 +02:00
import 'package:flutter/material.dart';
import 'package:selfprivacy/config/brand_colors.dart';
class BrandDivider extends StatelessWidget {
2021-03-15 17:39:44 +02:00
const BrandDivider({Key? key}) : super(key: key);
2020-12-02 11:16:23 +02:00
@override
Widget build(BuildContext context) {
return Container(
width: double.infinity,
height: 1,
color: BrandColors.dividerColor,
);
}
}