ente/lib/ui/settings/settings_section_title.dart

32 lines
700 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class SettingsSectionTitle extends StatelessWidget {
final String title;
2021-07-27 14:51:45 +00:00
final Color color;
const SettingsSectionTitle(
this.title, {
Key key,
this.color,
}) : super(key: key);
@override
Widget build(BuildContext context) {
2021-07-27 14:51:45 +00:00
return Column(children: [
Padding(padding: EdgeInsets.all(4)),
Align(
alignment: Alignment.centerLeft,
child: Text(
title,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
2021-07-27 14:51:45 +00:00
color: color ?? Theme.of(context).buttonColor,
),
),
),
Padding(padding: EdgeInsets.all(4)),
2021-07-27 14:51:45 +00:00
]);
}
}