mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-03 11:46:35 +00:00
13 lines
No EOL
262 B
Dart
13 lines
No EOL
262 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SectionDivider extends StatelessWidget {
|
|
const SectionDivider();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
height: 1,
|
|
color: Theme.of(context).dividerColor,
|
|
);
|
|
}
|
|
} |