Xamarin.Forms 学习系列之优秀UI收集

摘要:
//Github.com/SuavePirate/Xamarin.Forms.Controls.FloatingActionButton选项卡按钮https://github.com/UdaraAlwis/XFSegmentedControl圆形按钮https:

1、各种优秀UI例子

https://github.com/jsuarezruiz/xamarin-forms-goodlooking-UI

输入框例子

https://github.com/enisn/Xamarin.Forms.InputKit

Xamarin.Forms 学习系列之优秀UI收集第1张

Xamarin.Forms 学习系列之优秀UI收集第2张

浮动操作按钮

 https://github.com/SuavePirate/Xamarin.Forms.Controls.FloatingActionButton

Xamarin.Forms 学习系列之优秀UI收集第3张

选项卡按钮

https://github.com/UdaraAlwis/XFSegmentedControl

Xamarin.Forms 学习系列之优秀UI收集第4张

圆形按钮

https://github.com/wilsonvargas/ButtonCirclePlugin

Xamarin.Forms 学习系列之优秀UI收集第5张

动画按钮

https://github.com/xamarinium/ButtonWithActivityIndicator

 Xamarin.Forms 学习系列之优秀UI收集第6张

自定义后退按钮

https://github.com/bbl-Laobu/CustomBackIconDemo

Xamarin.Forms 学习系列之优秀UI收集第7张

图片按钮

 https://github.com/DelcoigneYves/Xam.Plugin.ImageButton

https://github.com/mariusmuntean/SimpleImageButton

Xamarin.Forms 学习系列之优秀UI收集第8张

工具栏按钮

https://github.com/AmitManchanda/iOSSecondaryToolbarMenubar

https://github.com/wilsonvargas/GradientNavigationToolbarXamarinForms

 导航栏bar自定义

https://github.com/thrive-now/BottomNavigationBarXF

https://github.com/CrossGeeks/CustomNavigationBarSample

 Xamarin.Forms 学习系列之优秀UI收集第9张

本地通知插件:

https://github.com/thudugala/Plugin.LocalNotification

Xamarin.Forms 学习系列之优秀UI收集第10张

 手写签名

https://github.com/xamarin/SignaturePad

https://github.com/search?l=C%23&p=2&q=signature&type=Repositories

 Xamarin.Forms 学习系列之优秀UI收集第11张

Picker例子,下拉列表、时间选择器

https://github.com/amay077/Xamarin_Forms_PickerViewSample  下拉列表

https://github.com/brminnick/InvestmentDataSampleApp 下拉列表,自动补全

https://github.com/CrossGeeks/ClearableDatePickerSample  时间选择器

https://github.com/kirtisagar/XamarinFormsRadioButtonXAML  单选

Xamarin.Forms 学习系列之优秀UI收集第12张

https://github.com/chrisriesgo/xamarin-forms-carouselview  

免责声明:文章转载自《Xamarin.Forms 学习系列之优秀UI收集》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇oracle 在C# 中调用oracle的数据库时,出现引用库和当前客户端不兼容的问题解决方案(转载)CSV 文件处理 PERL下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

element 表单校验失败自动聚焦到失败的input框

1.在对应的input框上添加ref属性,直接根据ref就可精确地获取到元素 <el-form-item label="课程名称" :label-width="formLabelWidth+'px'" prop="title"> <el-input ref="title" v-model="form.title" plac...

智能指针的实现(指针运算符重载)

智能指针的实现 Person类有showAge 成员函数 如果new出来的Person对象,就要让程序员自觉的去释放  delete 有了智能指针,让智能指针托管这个Person对象,对象的释放就不用操心了,让智能指针管理 为了让智能指针想普通的Person*指针一样使用 就要重载 -> 和* #define _CRT_SECURE_NO_WARNI...

26.怎样在Swift中定义宏?

  Swift 中没有宏定义,苹果建议使用let 或者 get 属性来替代宏定义值。虽然没有#define,但我们仍然可以使用 #if 并配合编译的配置来完成条件编译。下面会列出Swift项目开发中的一些常用宏定义,并提供源码。 1.常用字体宏定义 import Foundation import UIKit /// 系统普通字体 var gof_Sy...

抽象工厂模式(C++)

#define win 0 #define mac 1 #include <iostream> using namespace std; class button { public: button(){} virtual ~button(){} virtual void showbutton()=0; }; clas...

Python爬虫学习==&amp;gt;第五章:爬虫常用库的安装

学习目的:          爬虫有请求库(request、selenium)、解析库、存储库(MongoDB、Redis)、工具库,此节学习安装常用库的安装 正式步骤 Step1:urllib和re库   这两个库在安装Python中,会默认安装,下面代码示例调用:>>> import urllib >>> imp...

cocos2dx游戏资源加密之XXTEA

在手机游戏当中,游戏的资源加密保护是一件很重要的事情。 我花了两天的时间整理了自己在游戏当中的资源加密问题,实现了跨平台的资源流加密,这个都是巨人的肩膀之上的。 大概的思路是这样的,游戏资源通过XXTEA加密方法对流的加密方式,有自己的密钥和标识,通过标识可知是否有加密,密钥是自己程序当中的。除非有密钥,否则很难通过解出正确的文件。经过加密后,加密文件也就...