I have used Floating Text Field in my application. In don't know how to change the default placeholder color in ios. I have attached screenshot there the password default color is gray, I have to change the password color as black. If any text is entered in the entry that time only the password color is changed as black.
相关问题
- Xamarin. The name 'authorEntry does not exist
- Store data and global variables using the Applicat
- System.IO.MemoryMappedFiles on MonoTouch?
- Is it possible to use NSUbiquitousKeyValueStore wi
- Detection of swiping on a normal Android Activity
相关文章
- Xamarin form MessagingCenter Unsubscribe is not wo
- Reload data on tab selected in a fragment using vi
- The type initializer for 'SQLite.SQLiteConnect
- What to use for AttributeName in Xamarin Mac
- How to use native C++ libraries in Mono for Androi
- Start an Activity from another Activity on Xamarin
- Xamarin build error: defining a default interface
- Xamarin Android Player Error when attempting to fi
It turns out the problem was caused that the logic in
MaterialEntryRenderer
.Find the method
SetPlaceholderColor
, it changes the placeholderColr rendering.Modify it as below:
Then you can change the placeholder color as you want .