https://github.com/codemillmatt/forms-woods
Get Out of the Woods With Xamarin.Forms
https://github.com/codemillmatt/forms-woods
Last synced: 2 months ago
JSON representation
Get Out of the Woods With Xamarin.Forms
- Host: GitHub
- URL: https://github.com/codemillmatt/forms-woods
- Owner: codemillmatt
- Created: 2016-10-29T10:35:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-30T01:53:33.000Z (over 8 years ago)
- Last Synced: 2025-01-21T07:27:42.315Z (4 months ago)
- Language: C#
- Size: 18.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get Out of the Woods With Xamarin.Forms
As presented at MKEdotNET on October 29, 2016.
In this talk we explored several aspects of what could possibly mess up our Xamarin.Forms projects and ways to get out of those situations.
* Keeping unnecessary logic out of the views
* Performance
* UI customization## Ridding the views of unnecessary logic
It's all too easy to clog up the views in our apps with logic that could be better placed in reusable components elsewhere. Three of these components are:
1. Value Converters
2. Bendable Properties
3. BehaviorsThe first project, MKEValueConvert demoed value converters. While MKECustomBindings project demoed the other two.
## Performance
Who can argue that performance is crucial to an app's success? Here we looked at the following:
* XAML compilation
* ListView performance
* Layout performance
* General tips## UI Customization
Here we looked at 2 techniques to bring native platform look and feel into Forms apps.
* Native Embedding
* EffectsThe MKECustomBinding project shows Effects being put to use.