Skip to content

Commit

Permalink
Merge pull request #139 from muak/development
Browse files Browse the repository at this point in the history
iOS EntryCell keytype Default -> Done
  • Loading branch information
muak authored Nov 25, 2020
2 parents 527203d + e71f54e commit ffefad5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Sample/Sample.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,7 @@
<string>SettingsView</string>
<key>CFBundleAllowMixedLocalizations</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>ja</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion SettingsView.iOS/Cells/EntryCellRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public EntryCellView(Cell formsCell) : base(formsCell)
{
ValueField = new UITextField() { BorderStyle = UITextBorderStyle.None };
ValueField.AutoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight;

ValueField.ReturnKeyType = UIReturnKeyType.Done;
ValueField.EditingChanged += _textField_EditingChanged;
ValueField.EditingDidBegin += ValueField_EditingDidBegin;
ValueField.EditingDidEnd += ValueField_EditingDidEnd;
Expand Down
1 change: 1 addition & 0 deletions nuget/AzurePipelines.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ There are various cells such as (LabelCell,ButtonCell,CommandCell,SwitchCell,Che

## Changes

* [EntryCell][iOS] Keyboard enter key caption changed "Return" to "Done".
* [Header/Footer] Section header/footer does not respect SafeAreaInsets #83
* Support .NETStandard2.1
* Minimum Xamarin.Forms version >= 4.6.0.800
Expand Down

0 comments on commit ffefad5

Please sign in to comment.