OpenContacts/lib/widgets/inventory/inventory_browser_app_bar.dart

20 lines
507 B
Dart
Raw Normal View History

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