mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-15 18:25:59 -07:00
chore: Improved custom keyboard logic
This commit is contained in:
parent
07972ea5ee
commit
117d873683
10 changed files with 203 additions and 202 deletions
|
|
@ -105,7 +105,16 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
|
|||
valueListenable: selectedPoster,
|
||||
builder: (_, value, __) {
|
||||
return BackgroundImage(
|
||||
items: value != null ? [value] : [...homeCarouselItems, ...dashboardData.nextUp, ...allResume],
|
||||
images: (value != null
|
||||
? [value]
|
||||
: [
|
||||
...homeCarouselItems,
|
||||
...dashboardData.nextUp,
|
||||
...allResume,
|
||||
])
|
||||
.map((e) => e.images)
|
||||
.nonNulls
|
||||
.toList(),
|
||||
);
|
||||
},
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue