整理 Xamarin.Forms - Plugins
Open Source Components for Xamarin
Xamarin官方整理的一些开源组件,有需要可以先到这里找
GitHub:
xamarin/XamarinComponents: Plugins for Xamarin
Xamarin.Essentials
Xamarin官方组件,访问平台相关的原生API
GitHub:
xamarin/Essentials: Essential cross platform APIs for your mobile apps.
Audio
GitHub:
Xamarin-Plugins/SimpleAudioPlayer at master · adrianstevens/Xamarin-Plugins
资料:
Adding Sound to a Xamarin.Forms App | Xamarin Blog
Bluetooth
GitHub:
xabre/xamarin-bluetooth-le: Bluetooth LE plugin for Xamarin
资料:
Bluetooth LE plugin for Xamarin released - Svens Blog
GIF
GitHub:
Hybrid WebView
GitHub:
SKLn-Rad/Xam.Plugin.Webview: Xamarin Plugin for a HybridWebView in PCL projects.
Permission
GitHub:
jamesmontemagno/PermissionsPlugin: Check and Request Permissions Plugin for Xamarin and Windows
jamesmontemagno/CurrentActivityPlugin: Always grab the current Activity of your Xamarin.Android app!
Bluetooth Permission on Android · Issue #6 · jamesmontemagno/PermissionsPlugin
资料:
Permissions In Xamarin.Android - Xamarin | Microsoft Docs
Requesting Runtime Permissions in Android Marshmallow | Xamarin Blog
Simplified iOS & Android Runtime Permissions with Plugins! - James Montemagno
SQLite
GitHub:
praeclarum/sqlite-net: Simple, powerful, cross-platform SQLite client and ORM for .NET
资料:
Xamarin.Forms 使用本地数据库之 SQLite - 何旭 - 博客园
MessageBox
GitHub:
Popup Page
GitHub:
rotorgames/Rg.Plugins.Popup: Xamarin Forms popup plugin
Screenshot
Github:
存取键值对
Github:
jamesmontemagno/SettingsPlugin: Read and Write Settings Plugin for Xamarin and Windows
整理 Xamarin.Forms - Plugins的更多相关文章
- Xamarin.Forms 开发资源集合(复制)
复制:https://www.cnblogs.com/mschen/p/10199997.html 收集整理了下 Xamarin.Forms 的学习参考资料,分享给大家,稍后会不断补充: UI样式 S ...
- Xamarin.Forms 开发资源集合
收集整理了下 Xamarin.Forms 的学习参考资料,分享给大家,稍后会不断补充: UI样式 Snppts: Xamarin Forms UI Snippets. Prebuilt Templat ...
- Xamarin.Forms登录对话框及表单验证
微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言: 如果您觉得Dotnet9对您有帮助,欢迎赞赏. Xamarin.Forms登录系统 内容目录 实现效果 业务场景 编码实现 ...
- Xamarin.Forms弹出对话框插件
微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言: 如果您觉得Dotnet9对您有帮助,欢迎赞赏. Xamarin.Forms弹出对话框插件 内容目录 实现效果 业务场景 编码 ...
- 老司机学新平台 - Xamarin Forms开发框架之MvvmCross插件精选
在前两篇老司机学Xamarin系列中,简单介绍了Xamarin开发环境的搭建以及Prism和MvvmCross这两个开发框架.不同的框架,往往不仅仅使用不同的架构风格,同时社区活跃度不同,各种功能模块 ...
- Xamarin.Forms入门学习路线
Xamarin 介绍 Xamarin是一套跨平台解决方案,目的是使用C#语言创造原生的iOS,Android,Mac和Windows应用. Xamarin的三个优势: Xamarin App拥有原生A ...
- xamarin.forms新建项目android编译错误
vs2015 update3 新建的xamarin.forms项目中的android项目编译错误.提示缺少android_m2repository_r22.zip,96659D653BDE0FAEDB ...
- Xamarin.Forms 简介
An Introduction to Xamarin.Forms 来源:http://developer.xamarin.com/guides/cross-platform/xamarin-forms ...
- Xamarin.Forms 免费电子书
Xamarin Evolve 正在举行,现在已经放出2本免费的Xamarin.Forms 免费电子书,据现场的同学说这两天还有Xamarin.Forms 重磅消息发布: Creating Mobile ...
随机推荐
- Spring Data Jpa系列教程--------实体解析和关联关系
Spring Data Jpa是基于HIbernate开发的,所以建立实体建的实体和映射关系需要好好好的去了解一下,本文有以下内容,实体管理器介绍,实体与数据库表的映射介绍,关联关系(一对多,多对多) ...
- android 上AES解密是报错javax.crypto.BadPaddingException: pad block corrupted
网上看到两种方法: 1.SecretKeySpec skeySpec = new SecretKeySpec(getRawKey(key), "AES"); private sta ...
- 使用GSON解析JSON文件
package com.pingyijinren.test; /** * Created by Administrator on 2016/5/19 0019. */ public class App ...
- codevs——1009 产生数
1009 产生数 2002年NOIP全国联赛普及组 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 题解 题目描述 Description 给出一个 ...
- 记 SpringBoot1.* 转 Springoot2.0 遇到的问题
1.拦截器问题 到2.0之后在配置文件中写 static-path-pattern: /static/** 已经不起作用(2.0需要在方法中配置) SpringBoot1.*写法 @Configura ...
- Servlet实现国际化
以下内容引用自http://wiki.jikexueyuan.com/project/servlet/internationalization.html: 三个重要术语: 国际化(i18n):这意味着 ...
- 大话设计模式C++实现-第8章-工厂方法模式
一.UML图 二.概念 工厂方法模式(Factory Method):定义一个用于创建对象的接口,让子类决定实例化哪一个类.工厂方法是一个类的实例化延迟到其子类. 三.包括的角色 (1)抽象工厂 (2 ...
- Delphi 2007 的重构功能
Move 移动 1.将选定的静态函数从一个类移动到另一个类 2.将选中的类或接口移动到其他单元 Extract Interface 抽取接口 将选定的函数抽取到一个新的接口中 Extract Supe ...
- Android应用层View绘制流程之measure,layout,draw三步曲
概述 上一篇博文对DecorView和ViewRootImpl的关系进行了剖析,这篇文章主要是来剖析View绘制的三个基本流程:measure,layout,draw.仅仅有把这三个基本流程搞清楚了, ...
- 踩坑录-mysql不允许远程连接(错误码:1130) Host'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server“
每次搭建mysql环境都会遇见同样的问题,在此分享一下踩坑笔录. 一.问题描述 安装成功后,本地直接链接远程mysql,默认为不允许远程访问,则客户端提示1130 - Host'xxx.xxx.xxx ...