add titles to aur and builds screens

add storage icon
This commit is contained in:
2024-02-24 23:48:16 +01:00
parent 4ffb4b2855
commit 0c81399ea1
3 changed files with 14 additions and 14 deletions

View File

@ -36,7 +36,9 @@ class _AurScreenState extends State<AurScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
appBar: AppBar(
title: const Text("AUR"),
),
body: MultiProvider(
providers: [
ChangeNotifierProvider(create: (_) => PackagesProvider()),

View File

@ -12,7 +12,9 @@ class BuildsScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
appBar: AppBar(
title: const Text("All Builds"),
),
body: MultiProvider(
providers: [
ChangeNotifierProvider<BuildsProvider>(