feat: add to album on new beta timeline (#20119)

* feat: add to album on new beta timeline

* handle add album button

* tune

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
Brandon Wees 2025-07-25 01:10:33 -05:00 committed by GitHub
parent de67d22bc0
commit 06c78dfa91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 840 additions and 678 deletions

View file

@ -182,8 +182,7 @@ class _BetaLandscapeToggle extends HookWidget {
mainAxisAlignment: MainAxisAlignment.start,
children: [
const SizedBox(height: 100, child: BetaTimelineListTile()),
if (Store.isBetaTimelineEnabled)
const Expanded(child: BetaSyncSettings()),
if (Store.isBetaTimelineEnabled) const Expanded(child: BetaSyncSettings()),
],
);
}