OpenContacts/lib/widgets/settings_app_bar.dart

21 lines
491 B
Dart
Raw Normal View History

2023-06-03 11:17:54 -04:00
import 'package:flutter/material.dart';
class SettingsAppBar extends StatelessWidget {
const SettingsAppBar({super.key});
@override
Widget build(BuildContext context) {
return AppBar(
2023-06-04 10:27:18 -04:00
backgroundColor: Theme.of(context).colorScheme.surfaceVariant,
2023-06-03 11:17:54 -04:00
title: const Text("Settings"),
2023-06-04 10:27:18 -04:00
bottom: PreferredSize(
preferredSize: const Size.fromHeight(1),
child: Container(
height: 1,
color: Colors.black,
),
),
2023-06-03 11:17:54 -04:00
);
}
}