mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 02:59:28 +00:00
refactor: remove transparent background color from app bars
Some checks failed
Some checks failed
This commit is contained in:
parent
5f85df4d19
commit
c3d3a3900d
5 changed files with 0 additions and 5 deletions
|
|
@ -13,7 +13,6 @@ class DownloadsPage extends HookConsumerWidget {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: const Text('Downloads'),
|
title: const Text('Downloads'),
|
||||||
backgroundColor: Colors.transparent,
|
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
// history of downloads
|
// history of downloads
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@ class ExplorePage extends HookConsumerWidget {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: const Text('Explore'),
|
title: const Text('Explore'),
|
||||||
backgroundColor: Colors.transparent,
|
|
||||||
),
|
),
|
||||||
body: const MySearchBar(),
|
body: const MySearchBar(),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ class LibraryItemSliverAppBar extends StatelessWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SliverAppBar(
|
return SliverAppBar(
|
||||||
backgroundColor: Colors.transparent,
|
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
floating: true,
|
floating: true,
|
||||||
primary: true,
|
primary: true,
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@ class YouPage extends HookConsumerWidget {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
// title: const Text('You'),
|
// title: const Text('You'),
|
||||||
backgroundColor: Colors.transparent,
|
|
||||||
actions: [
|
actions: [
|
||||||
IconButton(
|
IconButton(
|
||||||
tooltip: 'Logs',
|
tooltip: 'Logs',
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ class HomePage extends HookConsumerWidget {
|
||||||
final scrollController = useScrollController();
|
final scrollController = useScrollController();
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
backgroundColor: Colors.transparent,
|
|
||||||
title: GestureDetector(
|
title: GestureDetector(
|
||||||
child: Text(
|
child: Text(
|
||||||
'Vaani',
|
'Vaani',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue