Skip to content

Commit

Permalink
text update for recently tab
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantKArya committed Mar 15, 2024
1 parent 3b81b80 commit 0405748
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/screens/widgets/tabList_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,17 @@ class _TabSongListWidgetState extends State<TabSongListWidget>
),
),
),
_tab_index == 0 ? const SongListWidget() : const Text("hi")
_tab_index == 0
? const SongListWidget()
: Expanded(
child: Center(
child: Text(
"Feature coming soon...",
style:
const TextStyle(color: Color.fromARGB(255, 255, 240, 240))
.merge(Default_Theme.secondoryTextStyleMedium),
)),
)
],
);
}
Expand Down

0 comments on commit 0405748

Please sign in to comment.