Fix non-dismissable keyboard on iOS...

codemagic-setup
Hank Grabowski 2023-03-23 11:25:05 -04:00
rodzic 7dbe520c73
commit 3927c3e779
2 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -5,8 +5,11 @@
* Changes
* Uses "Sentence Capitalization" keyboard to have shift on for first letter of beginning of each
sentence.
* Add version error check messages on DM sending and Resharing Diaspora posts for pre-2023.03 Friendica servers
* Add version error check messages on DM sending and Resharing Diaspora posts for pre-2023.03
Friendica servers
* Fixes
* Keyboard on Search Screen now dismisses when user clicks outside of the search text field or
hits "Done" button (which also initiates the search).
* New Features
## Version 0.3.0 (beta), 22 March 2023

Wyświetl plik

@ -132,13 +132,13 @@ class _SearchScreenState extends State<SearchScreen> {
onChanged: (value) {
searchText = value;
},
onEditingComplete: () {
setState(() {});
},
onSubmitted: (value) {
searchText = value;
updateSearchResults(profile);
},
onTapOutside: (event) {
FocusManager.instance.primaryFocus?.unfocus();
},
decoration: InputDecoration(
labelText: searchType == SearchTypes.directLink
? 'URL'