mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-02-04 07:52:55 +00:00
fix: dismiss keyboard on tap in search page (iOS)
This commit is contained in:
parent
826c8e4dd6
commit
530bb1ae1a
11
.claude/settings.local.json
Normal file
11
.claude/settings.local.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"Bash(flutter build:*)",
|
||||||
|
"Bash(curl:*)",
|
||||||
|
"Bash(/c/tools/nuget.exe help:*)",
|
||||||
|
"Bash(rustc:*)",
|
||||||
|
"Bash(ls:*)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -225,15 +225,19 @@ class SearchPage extends HookConsumerWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: AnimatedSwitcher(
|
child: GestureDetector(
|
||||||
duration: const Duration(milliseconds: 300),
|
onTap: () => FocusScope.of(context).unfocus(),
|
||||||
child: switch (selectedChip.value) {
|
behavior: HitTestBehavior.translucent,
|
||||||
"tracks" => const SearchPageTracksTab(),
|
child: AnimatedSwitcher(
|
||||||
"albums" => const SearchPageAlbumsTab(),
|
duration: const Duration(milliseconds: 300),
|
||||||
"artists" => const SearchPageArtistsTab(),
|
child: switch (selectedChip.value) {
|
||||||
"playlists" => const SearchPagePlaylistsTab(),
|
"tracks" => const SearchPageTracksTab(),
|
||||||
_ => const SearchPageAllTab(),
|
"albums" => const SearchPageAlbumsTab(),
|
||||||
},
|
"artists" => const SearchPageArtistsTab(),
|
||||||
|
"playlists" => const SearchPagePlaylistsTab(),
|
||||||
|
_ => const SearchPageAllTab(),
|
||||||
|
},
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
BIN
rustup-init.exe
Normal file
BIN
rustup-init.exe
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user