Skip to content

Commit e8cc51d

Browse files
committed
Fixed light theme colour issue for bottom sheet
Fixed light theme colour issue for bottom sheet Theme Bug Fixed Modal Bottom Sheet
1 parent 1b5713d commit e8cc51d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/Components/RSSFeedHomePage.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
837837
isScrollControlled: true,
838838
context: context,
839839
backgroundColor: ThemeProvider
840-
.theme.backgroundColor,
840+
.theme.primaryColorLight,
841841
builder: (context) {
842842
return ListView(
843843
shrinkWrap: true,

lib/Components/bottom_floating_menu_button.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
100100
),
101101
isScrollControlled: true,
102102
context: context,
103-
backgroundColor: ThemeProvider.theme.backgroundColor,
103+
backgroundColor: ThemeProvider.theme.primaryColorLight,
104104
builder: (context) {
105105
return ListView(shrinkWrap: true, children: [
106106
Padding(
@@ -381,7 +381,7 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
381381
),
382382
isScrollControlled: true,
383383
context: context,
384-
backgroundColor: ThemeProvider.theme.backgroundColor,
384+
backgroundColor: ThemeProvider.theme.primaryColorLight,
385385
builder: (context) {
386386
return ListView(shrinkWrap: true, children: [
387387
Padding(

lib/Components/torrent_tile.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class _TorrentTileState extends State<TorrentTile> {
3737
),
3838
isScrollControlled: true,
3939
context: context,
40-
backgroundColor: ThemeProvider.theme.backgroundColor,
40+
backgroundColor: ThemeProvider.theme.primaryColorLight,
4141
builder: (context) {
4242
return DeleteTorrentSheet(
4343
torrent: widget.model,

lib/Pages/home_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class _HomeScreenState extends State<HomeScreen> {
9191
),
9292
isScrollControlled: true,
9393
context: context,
94-
backgroundColor: ThemeProvider.theme.backgroundColor,
94+
backgroundColor: ThemeProvider.theme.primaryColorLight,
9595
builder: (context) {
9696
return AddAutoTorrent(
9797
base64: base64, imageBytes: imageBytes, uriString: uriString);

0 commit comments

Comments
 (0)