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:

luberda-molinet/FFImageLoading: Image loading, caching & transforming library for Xamarin and Windows

Hybrid WebView

GitHub:

SKLn-Rad/Xam.Plugin.Webview: Xamarin Plugin for a HybridWebView in PCL projects.

XLabs/Xamarin-Forms-Labs

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:

aritchie/userdialogs: A cross platform library that allows you to call for standard user dialogs from a core .net standard library, Actionsheets, alerts, confirmations, loading, login, progress, prompt, toast... async just for fun

Popup Page

GitHub:

rotorgames/Rg.Plugins.Popup: Xamarin Forms popup plugin

dansiegel/Prism.Plugin.Popups: This provides extensibility for Prism.Forms INavigationService to handle Popup Views

Screenshot

Github:

wilsonvargas/ScreenshotPlugin: A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.

存取键值对

Github:

jamesmontemagno/SettingsPlugin: Read and Write Settings Plugin for Xamarin and Windows

整理 Xamarin.Forms - Plugins的更多相关文章

  1. Xamarin.Forms 开发资源集合(复制)

    复制:https://www.cnblogs.com/mschen/p/10199997.html 收集整理了下 Xamarin.Forms 的学习参考资料,分享给大家,稍后会不断补充: UI样式 S ...

  2. Xamarin.Forms 开发资源集合

    收集整理了下 Xamarin.Forms 的学习参考资料,分享给大家,稍后会不断补充: UI样式 Snppts: Xamarin Forms UI Snippets. Prebuilt Templat ...

  3. Xamarin.Forms登录对话框及表单验证

    微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言: 如果您觉得Dotnet9对您有帮助,欢迎赞赏. Xamarin.Forms登录系统 内容目录 实现效果 业务场景 编码实现 ...

  4. Xamarin.Forms弹出对话框插件

    微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言: 如果您觉得Dotnet9对您有帮助,欢迎赞赏. Xamarin.Forms弹出对话框插件 内容目录 实现效果 业务场景 编码 ...

  5. 老司机学新平台 - Xamarin Forms开发框架之MvvmCross插件精选

    在前两篇老司机学Xamarin系列中,简单介绍了Xamarin开发环境的搭建以及Prism和MvvmCross这两个开发框架.不同的框架,往往不仅仅使用不同的架构风格,同时社区活跃度不同,各种功能模块 ...

  6. Xamarin.Forms入门学习路线

    Xamarin 介绍 Xamarin是一套跨平台解决方案,目的是使用C#语言创造原生的iOS,Android,Mac和Windows应用. Xamarin的三个优势: Xamarin App拥有原生A ...

  7. xamarin.forms新建项目android编译错误

    vs2015 update3 新建的xamarin.forms项目中的android项目编译错误.提示缺少android_m2repository_r22.zip,96659D653BDE0FAEDB ...

  8. Xamarin.Forms 简介

    An Introduction to Xamarin.Forms 来源:http://developer.xamarin.com/guides/cross-platform/xamarin-forms ...

  9. Xamarin.Forms 免费电子书

    Xamarin Evolve 正在举行,现在已经放出2本免费的Xamarin.Forms 免费电子书,据现场的同学说这两天还有Xamarin.Forms 重磅消息发布: Creating Mobile ...

随机推荐

  1. Spring data jpa 复杂动态查询方式总结

    一.Spring data jpa 简介 首先我并不推荐使用jpa作为ORM框架,毕竟对于负责查询的时候还是不太灵活,还是建议使用mybatis,自己写sql比较好.但是如果公司用这个就没办法了,可以 ...

  2. Codeforces915G. Coprime Arrays

    n<=2e6的数组,m<=2e6个询问,对1<=i<=m的每个i问:只用<=i的数字填进数组,有多少种方案使数组的总gcd=1.强制把每个询问的答案求出来. 比如说现在有 ...

  3. IntentService用于服务中开启子线程的自动关闭

    package com.pingyijinren.test; import android.app.IntentService; import android.content.Intent; impo ...

  4. codeforces 762E(cdq分治)

    题意: n个电台,每个电台有三个属性xi, ri, fi.分别代表电台的坐标,电台的播报范围,以及播报的频率. 对于一对电台i, j,若min(ri, rj) >= |xi - xj|,那么他们 ...

  5. JVM(二):Java中的语法糖

    JVM(二):Java中的语法糖 上文讲到在语义分析中会对Java中的语法糖进行解糖操作,因此本文就主要讲述一下Java中有哪些语法糖,每个语法糖在解糖过后的原始代码,以及这些语法糖背后的逻辑. 语法 ...

  6. Mybatis教程(一)

    1      Mybatis教程(一) 学习过的持久层框架:DBUtils , Hibernate Mybatis就是类似于hibernate的orm持久层框架. 为什么学Mybatis? 目前最主流 ...

  7. SHARP AR-2048D/2348D

    http://www.sharp.cn/printer/AR-2048D%7C2348D/support/download.html

  8. MYSQL 时间数据类型

  9. SAS编程基础 - 菜鸟入门常用操作

    1. SAS9.4添加和取消注释的快捷键? Ctrl+/:添加注释 Ctrl+Shift+/:取消注释 2. 如何强制终止程序运行? 看到那个圆圈里带叹号的图标了吗?没错,就是它 - 中断! 3. 如 ...

  10. IE網址欄快速輸入網址,“Ctrl+Enter”補齊“.com”

    繁體中文Windows,預設 IE 在網址列輸入 abc,然後按 Ctrl+Enter ,會跳到www.abc.com.tw, 但較常用的連結是www.abc.com,如何修改这一設定呢? 可以透過修 ...