17 lines
429 B
Dart
17 lines
429 B
Dart
import 'package:didvan/config/theme_data.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class DidvanDivider extends StatelessWidget {
|
|
const DidvanDivider({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
height: 1,
|
|
width: double.infinity,
|
|
margin: const EdgeInsets.symmetric(vertical: 16),
|
|
color: Theme.of(context).colorScheme.border,
|
|
);
|
|
}
|
|
}
|