<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
  <channel>
    <title>GitHub Dart Weekly Trending</title>
    <description>Weekly Trending of Dart in GitHub</description>
    <pubDate>Wed, 13 May 2026 01:45:26 GMT</pubDate>
    <link>http://mshibanami.github.io/GitHubTrendingRSS</link>
    
    <item>
      <title>flutter/skills</title>
      <link>https://github.com/flutter/skills</link>
      <description>&lt;h1&gt;Flutter Agent Skills&lt;/h1&gt; 
&lt;p&gt;Agent skills for Flutter, maintained by the Flutter team. A collection of skills providing tailored instructions for happy path Flutter app development workflows. By giving the agent actual domain expertise and repeatable workflows, you drastically reduce mistakes and ensure agents reliably complete the task following best practices.&lt;/p&gt; 
&lt;p&gt;Skills are essentially simple folders of files that can be seen as complementary to MCP, where MCP gives an agent access to specialized tools and a Skill teaches the agent “how” to use tools for a specific task.&lt;/p&gt; 
&lt;p&gt;You can also install the &lt;a href=&quot;https://github.com/dart-lang/skills&quot;&gt;Agent Skills for Dart&lt;/a&gt; for Dart tasks.&lt;/p&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;To install all skills into your project, run the following command. The &lt;code&gt;--agent universal&lt;/code&gt; flag puts it in the standard &lt;code&gt;.agents/skills&lt;/code&gt; folder that most agents use.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx skills add flutter/skills --skill &#39;*&#39; --agent universal
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Updating Skills&lt;/h2&gt; 
&lt;p&gt;To update, run the following command:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx skills update
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Available Skills&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Skill&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
   &lt;th&gt;Example prompt&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-add-integration-test/SKILL.md&quot;&gt;flutter-add-integration-test&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Configures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing to a project, exploring UI components via MCP, or automating user flows with the integration_test package.&lt;/td&gt; 
   &lt;td&gt;Add an integration test that validates the checkout experience&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-add-widget-preview/SKILL.md&quot;&gt;flutter-add-widget-preview&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Adds interactive widget previews to the project using the previews.dart system. Use when creating new UI components or updating existing screens to ensure consistent design and interactive testing.&lt;/td&gt; 
   &lt;td&gt;Create a preview for the ProductCard widget with different price states&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-add-widget-test/SKILL.md&quot;&gt;flutter-add-widget-test&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Implement a component-level test using &lt;code&gt;WidgetTester&lt;/code&gt; to verify UI rendering and user interactions (tapping, scrolling, entering text). Use when validating that a specific widget displays correct data and responds to events as expected.&lt;/td&gt; 
   &lt;td&gt;Add a widget test for the CustomButton to verify the onTap callback is called&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-apply-architecture-best-practices/SKILL.md&quot;&gt;flutter-apply-architecture-best-practices&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring for scalability.&lt;/td&gt; 
   &lt;td&gt;Refactor the authentication flow to follow the recommended layered architecture&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-build-responsive-layout/SKILL.md&quot;&gt;flutter-build-responsive-layout&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Use &lt;code&gt;LayoutBuilder&lt;/code&gt;, &lt;code&gt;MediaQuery&lt;/code&gt;, or &lt;code&gt;Expanded/Flexible&lt;/code&gt; to create a layout that adapts to different screen sizes. Use when you need the UI to look good on both mobile and tablet/desktop form factors.&lt;/td&gt; 
   &lt;td&gt;Make the home screen responsive so it displays a grid on tablets and a list on phones&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-fix-layout-issues/SKILL.md&quot;&gt;flutter-fix-layout-issues&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing &quot;RenderFlex overflowed&quot;, &quot;Vertical viewport was given unbounded height&quot;, or similar layout issues.&lt;/td&gt; 
   &lt;td&gt;Fix the overflow error on the profile page when the keyboard is visible&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-implement-json-serialization/SKILL.md&quot;&gt;flutter-implement-json-serialization&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Create model classes with &lt;code&gt;fromJson&lt;/code&gt; and &lt;code&gt;toJson&lt;/code&gt; methods using &lt;code&gt;dart:convert&lt;/code&gt;. Use when manually mapping JSON keys to class properties for simple data structures.&lt;/td&gt; 
   &lt;td&gt;Implement JSON serialization for the User model class&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-setup-declarative-routing/SKILL.md&quot;&gt;flutter-setup-declarative-routing&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Configure &lt;code&gt;MaterialApp.router&lt;/code&gt; using a package like &lt;code&gt;go_router&lt;/code&gt; for advanced URL-based navigation. Use when developing web applications or mobile apps that require specific deep linking and browser history support.&lt;/td&gt; 
   &lt;td&gt;Set up GoRouter with paths for home, details, and settings&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-setup-localization/SKILL.md&quot;&gt;flutter-setup-localization&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Add &lt;code&gt;flutter_localizations&lt;/code&gt; and &lt;code&gt;intl&lt;/code&gt; dependencies, enable &quot;generate true&quot; in &lt;code&gt;pubspec.yaml&lt;/code&gt;, and create an &lt;code&gt;l10n.yaml&lt;/code&gt; configuration file. Use when initializing localization support for a new Flutter project.&lt;/td&gt; 
   &lt;td&gt;Setup localization and add English and Spanish translations&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/skills/flutter-use-http-package/SKILL.md&quot;&gt;flutter-use-http-package&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Use the &lt;code&gt;http&lt;/code&gt; package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.&lt;/td&gt; 
   &lt;td&gt;Use the http package to fetch the list of products from the API&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;We aren&#39;t accepting pull requests at this time, but we would love to hear your feedback!&lt;/p&gt; 
&lt;p&gt;Please see &lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; for more information.&lt;/p&gt; 
&lt;h2&gt;Code of Conduct&lt;/h2&gt; 
&lt;p&gt;Please see &lt;a href=&quot;https://raw.githubusercontent.com/flutter/skills/main/CODE_OF_CONDUCT.md&quot;&gt;CODE_OF_CONDUCT.md&lt;/a&gt; for more information.&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/0efed36e05c8c81d9c89d612c473df2a328e4f6d2476d1cfba2413d6ae61d85c/flutter/skills" medium="image" />
      
    </item>
    
    <item>
      <title>KaringX/clashmi</title>
      <link>https://github.com/KaringX/clashmi</link>
      <description>&lt;p&gt;Clash Mihomo for iOS/MacOS/Android/Windows/Linux&lt;/p&gt;&lt;hr&gt;&lt;h1 align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/KaringX/clashmi/main/assets/demo/icon_256.png&quot; alt=&quot;Clash Mi&quot; width=&quot;256&quot; /&gt; &lt;br /&gt; Clash Mi - 又一款mihomo核心的代理工具 &lt;br /&gt; &lt;/h1&gt; 
&lt;h3 align=&quot;center&quot;&gt; 基于 &lt;a href=&quot;https://github.com/flutter/flutter&quot;&gt;flutter&lt;/a&gt; 的 &lt;a href=&quot;https://github.com/MetaCubeX/mihomo&quot;&gt;mihomo(clash.meta)&lt;/a&gt; 图形用户界面。 &lt;/h3&gt; 
&lt;h2&gt;特点&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;内置Mihomo内核 
  &lt;ul&gt; 
   &lt;li&gt;基于最新且持续更新的Mihomo(Clash.Meta)内核. 内核及客户端均持续更新维护，放心使用.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;操作简单 
  &lt;ul&gt; 
   &lt;li&gt;支持metacubex的推荐配置, 内核基于yaml配置运行. 小白用户使用机场订阅即可使用.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;自带&lt;a href=&quot;https://github.com/Zephyruso/zashboard&quot;&gt;zashboard面板&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;web面板 或许你更加熟悉.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;官网/用户手册: &lt;a href=&quot;https://clashmi.app&quot;&gt;clashmi.app&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h5&gt;注意:&lt;/h5&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Clash Mi或KaringX未在任何视频平台开设过任何频道&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clashmi.app&quot;&gt;Clash Mi唯一官网&lt;/a&gt;: &lt;a href=&quot;https://clashmi.app&quot;&gt;https://clashmi.app&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;strong&gt;请勿相信其他网址提供的信息、下载二次打包的软件&lt;/strong&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;推广&lt;/h2&gt; 
&lt;details&gt; 
 &lt;summary&gt;查看所有推广 &lt;h3&gt;✈️推荐机场&lt;/h3&gt; &lt;p&gt;&lt;a href=&quot;https://2.x31415926.top/redir.html?url=aHR0cHM6Ly93d3cuZGc2LnRvcC8jL3JlZ2lzdGVyP2NvZGU9bEZINGlpOUQ=&amp;amp;i=3eb&amp;amp;t=1723644053&quot;&gt;🐶狗狗加速 —— 技术流机场 Doggygo VPN&lt;/a&gt;&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt;高性能海外机场，海外团队，无跑路风险&lt;/li&gt; 
   &lt;li&gt;专属链接注册送 3 天，每天 1G 流量 &lt;a href=&quot;https://2.x31415926.top/redir.html?url=aHR0cHM6Ly93d3cuZGc2LnRvcC8jL3JlZ2lzdGVyP2NvZGU9bEZINGlpOUQ=&amp;amp;i=3eb&amp;amp;t=1723644053&quot;&gt;免费试用&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;优惠套餐每月仅需 15.8 元，160G 流量，年付 8 折&lt;/li&gt; 
   &lt;li&gt;全球首家支持&lt;code&gt;Hysteria2&lt;/code&gt; 协议，集群负载均衡设计，高速专线，极低延迟，无视晚高峰，4K 秒开&lt;/li&gt; 
   &lt;li&gt;解锁流媒体及 ChatGPT&lt;/li&gt; 
  &lt;/ul&gt; &lt;p&gt;&lt;a href=&quot;https://2.x31415926.top/&quot;&gt;👉更多机场优惠 每日更新&lt;/a&gt;&lt;/p&gt; &lt;/summary&gt; 
 &lt;h3&gt;🤝机场合作招募&lt;/h3&gt; 
 &lt;ul&gt; 
  &lt;li&gt;👉&lt;a href=&quot;https://karing.app/blog/isp/cooperation&quot;&gt;联系方式与合作形式&lt;/a&gt;👈&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/details&gt; 
&lt;h2&gt;安装&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;IOS AppStore&lt;/strong&gt;: （搜索关键词：clash mi） 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://apps.apple.com/us/app/clash-mi/id6744321968&quot;&gt;https://apps.apple.com/us/app/clash-mi/id6744321968&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;IOS TestFlight&lt;/strong&gt;: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://testflight.apple.com/join/bjHXktB3&quot;&gt;https://testflight.apple.com/join/bjHXktB3&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;MacOS/Android/Windows/Linux&lt;/strong&gt;: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://clashmi.app/download&quot;&gt;https://clashmi.app/download&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://github.com/KaringX/clashmi/releases/latest&quot;&gt;https://github.com/KaringX/clashmi/releases/latest&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt; &lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;brew install clash-mi
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;系统要求&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;IOS &amp;gt;= 15&lt;/li&gt; 
 &lt;li&gt;MacOS &amp;gt;= 12 (Intel, Apple Silicon)&lt;/li&gt; 
 &lt;li&gt;Android &amp;gt;= 8 (arm64-v8a, armeabi-v7a)&lt;/li&gt; 
 &lt;li&gt;Windows &amp;gt;= 10 （amd64）&lt;/li&gt; 
 &lt;li&gt;Linux （amd64）&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;常见问题&lt;/h3&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;a href=&quot;https://clashmi.app/guide/faq&quot;&gt;FAQ|cn&lt;/a&gt;&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h3&gt;截图&lt;/h3&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/KaringX/clashmi/main/assets/demo/home.png&quot; alt=&quot;app: home&quot; width=&quot;50%&quot; /&gt; 
 &lt;br /&gt;
 &lt;br /&gt; 
&lt;/div&gt; 
&lt;h2&gt;提交需求/bug&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KaringX/clashmi/issues&quot;&gt;欢迎报告bug及需求！&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/ClashMiApp&quot;&gt;ClashMiApp 电报群&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;捐赠&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clashmi.app/donate&quot;&gt;请开发者喝一杯&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Projects&lt;/h2&gt; 
&lt;h3&gt;致谢: Clash Mi 基于或受到这些项目的启发：&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutter.dev/&quot;&gt;flutter&lt;/a&gt;：使构建美观应用变得轻松快捷.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MetaCubeX/mihomo&quot;&gt;mihomo&lt;/a&gt;：另一款 clash核心.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Zephyruso/zashboard&quot;&gt;zashboard&lt;/a&gt;: 使用 Clash API 的仪表板.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Karing Team:&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://karing.app&quot;&gt;Karing&lt;/a&gt;: &lt;a href=&quot;https://karing.app&quot;&gt;https://karing.app&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://clashmi.app/&quot;&gt;Clash Mi&lt;/a&gt;: &lt;a href=&quot;https://clashmi.app/&quot;&gt;https://clashmi.app/&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KaringX/sing-poet&quot;&gt;sing-poet&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/966153123/b5b77420-ac25-420e-9483-c7fafebe2204" medium="image" />
      
    </item>
    
    <item>
      <title>dart-lang/skills</title>
      <link>https://github.com/dart-lang/skills</link>
      <description>&lt;h1&gt;Agent Skills for Dart&lt;/h1&gt; 
&lt;p&gt;Agent skills for Dart, maintained by the Dart team.&lt;/p&gt; 
&lt;p&gt;A collection of skills providing tailored instructions for common Dart development workflows. By giving the agent actual domain expertise and repeatable workflows, you drastically reduce mistakes and ensure agents reliably complete the task following best practices.&lt;/p&gt; 
&lt;p&gt;Skills are essentially simple folders of files that can be seen as complementary to MCP, where MCP gives an agent access to specialized tools and a skill teaches the agent how to use tools for a specific task.&lt;/p&gt; 
&lt;p&gt;If you are using Dart to build Flutter apps, you may also be interested in &lt;a href=&quot;https://github.com/flutter/skills&quot;&gt;Agent Skills for Flutter&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;To install all skills into your project, run the following command. The &lt;code&gt;--agent universal&lt;/code&gt; flag puts it in the standard &lt;code&gt;.agents/skills&lt;/code&gt; folder that most agents use.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx skills add dart-lang/skills --skill &#39;*&#39; --agent universal
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Updating Skills&lt;/h2&gt; 
&lt;p&gt;To update, run the following command:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx skills update
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Please see &lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; for more information.&lt;/p&gt; 
&lt;h2&gt;Code of Conduct&lt;/h2&gt; 
&lt;p&gt;Please see &lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/CODE_OF_CONDUCT.md&quot;&gt;CODE_OF_CONDUCT.md&lt;/a&gt; for more information.&lt;/p&gt; 
&lt;h2&gt;Available Skills&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Skill&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
   &lt;th&gt;Example prompt&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-add-unit-test/SKILL.md&quot;&gt;dart-add-unit-test&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Write and organize unit tests for functions, methods, and classes using &lt;code&gt;package:test&lt;/code&gt;. Use when creating new logic or fixing bugs to ensure code remains correct and regression-free.&lt;/td&gt; 
   &lt;td&gt;Add a unit test for the Point class.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-build-cli-app/SKILL.md&quot;&gt;dart-build-cli-app&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Entrypoint structure, exit codes, cross-platform scripts. Use when building command line utilities, scripts, or applications.&lt;/td&gt; 
   &lt;td&gt;Create a basic CLI app structure with argument parsing&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-collect-coverage/SKILL.md&quot;&gt;dart-collect-coverage&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Collect coverage using the coverage packge and create an LCOV report&lt;/td&gt; 
   &lt;td&gt;Collect test coverage&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-fix-runtime-errors/SKILL.md&quot;&gt;dart-fix-runtime-errors&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify resolution via hot_reload.&lt;/td&gt; 
   &lt;td&gt;Fix the NullPointer error in the user profile service.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-generate-test-mocks/SKILL.md&quot;&gt;dart-generate-test-mocks&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Define and generate mock objects for external dependencies using &lt;code&gt;package:mockito&lt;/code&gt; and &lt;code&gt;build_runner&lt;/code&gt;. Use when unit testing classes that depend on complex external services like APIs or databases.&lt;/td&gt; 
   &lt;td&gt;Generate a mock for the ApiClient class&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-migrate-to-checks-package/SKILL.md&quot;&gt;dart-migrate-to-checks-package&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Replace the usage of &lt;code&gt;expect&lt;/code&gt; and similar functions from &lt;code&gt;package:matcher&lt;/code&gt; to &lt;code&gt;package:checks&lt;/code&gt; equivalents.&lt;/td&gt; 
   &lt;td&gt;Migrate the tests in test/user_test.dart to use package:checks&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-resolve-package-conflicts/SKILL.md&quot;&gt;dart-resolve-package-conflicts&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Workflow for fixing package version conflicts. Use this when &lt;code&gt;pub get&lt;/code&gt; fails due to incompatible package versions.&lt;/td&gt; 
   &lt;td&gt;Resolve the dependency conflicts in my pubspec&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-run-static-analysis/SKILL.md&quot;&gt;dart-run-static-analysis&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Execute &lt;code&gt;dart analyze&lt;/code&gt; to identify warnings and errors, and use &lt;code&gt;dart fix --apply&lt;/code&gt; to automatically resolve mechanical lint issues. Use during development to ensure code quality and before committing changes.&lt;/td&gt; 
   &lt;td&gt;Run static analysis and fix the issues&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/dart-lang/skills/main/skills/dart-use-pattern-matching/SKILL.md&quot;&gt;dart-use-pattern-matching&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;Use switch expressions and pattern matching where appropriate&lt;/td&gt; 
   &lt;td&gt;Use switch expressions and pattern matching in the Point class&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/c0f4e734443e1bef1f26000d2859277850f27012c5c1fabbb0eda38a6bbd6586/dart-lang/skills" medium="image" />
      
    </item>
    
    <item>
      <title>lichess-org/mobile</title>
      <link>https://github.com/lichess-org/mobile</link>
      <description>&lt;p&gt;Lichess mobile app&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;Lichess Mobile&lt;/h1&gt; 
&lt;p&gt;Second iteration of the &lt;a href=&quot;https://lichess.org/mobile&quot;&gt;Lichess mobile app&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;How to contribute&lt;/h2&gt; 
&lt;p&gt;Contributions to this project are welcome!&lt;/p&gt; 
&lt;p&gt;If you want to contribute, please read the &lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/CONTRIBUTING.md&quot;&gt;contributing guide&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;If you are new to this project, you can &lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/docs&quot;&gt;read the documentation&lt;/a&gt; to get started. The &lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/CLAUDE.md&quot;&gt;CLAUDE.md&lt;/a&gt; is also a good resource to understand the codebase.&lt;/p&gt; 
&lt;h2&gt;Setup&lt;/h2&gt; 
&lt;p&gt;tl;dr: Install Flutter, clone the repo, run in order:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;code&gt;flutter pub get&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;dart run build_runner watch&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;code&gt;flutter analyze --watch&lt;/code&gt;,&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;and you&#39;re ready to code!&lt;/p&gt; 
&lt;p&gt;See &lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/docs/setting_dev_env.md&quot;&gt;the dev environment docs&lt;/a&gt; for detailed instructions.&lt;/p&gt; 
&lt;h2&gt;Running the app&lt;/h2&gt; 
&lt;p&gt;To run the app, you can use the following command:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# if not already done, run the code generation
dart run build_runner build

# run the app on all available devices
flutter run -d all
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Running tests&lt;/h2&gt; 
&lt;p&gt;To run the tests, you can use the following command:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;# if not already done, run the code generation
dart run build_runner build

flutter test
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Internationalisation&lt;/h2&gt; 
&lt;p&gt;Do not edit the &lt;code&gt;app_en.arb&lt;/code&gt; file by hand, this file is generated. For more information, see &lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/docs/internationalisation.md&quot;&gt;Internationalisation&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Releasing&lt;/h2&gt; 
&lt;p&gt;Only for members of lichess team.&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Bump the pubspec.yaml version number. This can be in a PR making a change or a separate PR. Use semantic versioning to determine which part to increment. The version number after the + should also be incremented. For example 0.3.3+000303 with a patch should become 0.3.4+000304.&lt;/li&gt; 
 &lt;li&gt;Run workflow &lt;a href=&quot;https://github.com/lichess-org/mobile/actions/workflows/deploy_play_store.yml&quot;&gt;Deploy to Play Store&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/lichess-org/mobile/main/docs/publish_fdroid.md&quot;&gt;Publish on F-Droid&lt;/a&gt;&lt;/li&gt; 
&lt;/ol&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/40dc6d214f731ceb445bf7eb1ee2d9fd3c5e091874e59cd75f5ec2810d9c0ecb/lichess-org/mobile" medium="image" />
      
    </item>
    
    <item>
      <title>flutter/flutter</title>
      <link>https://github.com/flutter/flutter</link>
      <description>&lt;p&gt;Flutter makes it easy and fast to build beautiful apps for mobile and beyond&lt;/p&gt;&lt;hr&gt;&lt;a href=&quot;https://flutter.dev/&quot;&gt; &lt;h1 align=&quot;center&quot;&gt; 
  &lt;picture&gt; 
   &lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://docs.flutter.dev/logo_dark.png&quot; /&gt; 
   &lt;img alt=&quot;Flutter&quot; src=&quot;https://docs.flutter.dev/logo.png&quot; /&gt; 
  &lt;/picture&gt; &lt;/h1&gt; &lt;/a&gt; 
&lt;p&gt;&lt;a href=&quot;https://flutter-dashboard.appspot.com/#/build?repo=flutter&quot;&gt;&lt;img src=&quot;https://flutter-dashboard.appspot.com/api/public/build-status-badge?repo=flutter&quot; alt=&quot;Flutter CI Status&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://raw.githubusercontent.com/flutter/flutter/master/docs/contributing/Chat.md&quot;&gt;&lt;img src=&quot;https://img.shields.io/discord/608014603317936148?logo=discord&quot; alt=&quot;Discord badge&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://twitter.com/intent/follow?screen_name=flutterdev&quot;&gt;&lt;img src=&quot;https://img.shields.io/twitter/follow/flutterdev.svg?style=social&amp;amp;label=Follow&quot; alt=&quot;Twitter handle&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://bsky.app/profile/flutter.dev&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Bluesky-0285FF?logo=bluesky&amp;amp;logoColor=fff&amp;amp;label=Follow%20me%20on&amp;amp;color=0285FF&quot; alt=&quot;BlueSky badge&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://codecov.io/gh/flutter/flutter&quot;&gt;&lt;img src=&quot;https://codecov.io/gh/flutter/flutter/branch/master/graph/badge.svg?token=11yDrJU2M2&quot; alt=&quot;codecov&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://insights.linuxfoundation.org/project/flutter&quot;&gt;&lt;img src=&quot;https://insights.linuxfoundation.org/api/badge/health-score?project=flutter&quot; alt=&quot;LFX Health Score&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://bestpractices.coreinfrastructure.org/projects/5631&quot;&gt;&lt;img src=&quot;https://bestpractices.coreinfrastructure.org/projects/5631/badge&quot; alt=&quot;CII Best Practices&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://slsa.dev&quot;&gt;&lt;img src=&quot;https://slsa.dev/images/gh-badge-level1.svg?sanitize=true&quot; alt=&quot;SLSA 1&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Flutter is Google&#39;s SDK for crafting beautiful, fast user experiences for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.&lt;/p&gt; 
&lt;h2&gt;Documentation&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://docs.flutter.dev/get-started&quot;&gt;Install Flutter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://docs.flutter.dev&quot;&gt;Flutter documentation&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/flutter/master/docs/README.md&quot;&gt;Development wiki&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/flutter/raw/main/CONTRIBUTING.md&quot;&gt;Contributing to Flutter&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;For release and other announcements, join the &lt;a href=&quot;https://groups.google.com/g/flutter-announce&quot;&gt;flutter-announce&lt;/a&gt; mailing list. Our documentation also tracks &lt;a href=&quot;https://docs.flutter.dev/release/breaking-changes&quot;&gt;breaking changes&lt;/a&gt; across releases.&lt;/p&gt; 
&lt;h2&gt;Terms of service&lt;/h2&gt; 
&lt;p&gt;The Flutter tool may occasionally download resources from Google servers. By downloading or using the Flutter SDK, you agree to the Google Terms of Service: &lt;a href=&quot;https://policies.google.com/terms&quot;&gt;https://policies.google.com/terms&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;For example, when installed from GitHub (as opposed to from a prepackaged archive), the Flutter tool will download the Dart SDK from Google servers immediately when first run, as it is used to execute the &lt;code&gt;flutter&lt;/code&gt; tool itself. This will also occur when Flutter is upgraded (e.g. by running the &lt;code&gt;flutter upgrade&lt;/code&gt; command).&lt;/p&gt; 
&lt;h2&gt;About Flutter&lt;/h2&gt; 
&lt;p&gt;We think Flutter will help you create beautiful, fast apps, with a productive, extensible and open development model, whether you&#39;re targeting iOS or Android, web, Windows, macOS, Linux or embedding it as the UI toolkit for a platform of your choice.&lt;/p&gt; 
&lt;h3&gt;Beautiful user experiences&lt;/h3&gt; 
&lt;p&gt;We want to enable designers to deliver their full creative vision without being forced to water it down due to limitations of the underlying framework. Flutter&#39;s &lt;a href=&quot;https://docs.flutter.dev/resources/inside-flutter&quot;&gt;layered architecture&lt;/a&gt; gives you control over every pixel on the screen and its powerful compositing capabilities let you overlay and animate graphics, video, text, and controls without limitation. Flutter includes a full &lt;a href=&quot;https://docs.flutter.dev/ui/widgets&quot;&gt;set of widgets&lt;/a&gt; that deliver pixel-perfect experiences whether you&#39;re building for iOS (&lt;a href=&quot;https://docs.flutter.dev/ui/widgets/cupertino&quot;&gt;Cupertino&lt;/a&gt;) or other platforms (&lt;a href=&quot;https://docs.flutter.dev/ui/widgets/material&quot;&gt;Material&lt;/a&gt;), along with support for customizing or creating entirely new visual components.&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;https://github.com/flutter/website/raw/main/site/web/assets/images/docs/homepage/reflectly-hero-600px.png?raw=true&quot; alt=&quot;Reflectly hero image&quot; /&gt;&lt;/p&gt; 
&lt;h3&gt;Fast results&lt;/h3&gt; 
&lt;p&gt;Flutter is fast. It&#39;s powered by hardware-accelerated 2D graphics libraries like &lt;a href=&quot;https://skia.org/&quot;&gt;Skia&lt;/a&gt; (which underpins Chrome and Android) and &lt;a href=&quot;https://docs.flutter.dev/perf/impeller&quot;&gt;Impeller&lt;/a&gt;. We architected Flutter to support glitch-free, jank-free graphics at the native speed of your device.&lt;/p&gt; 
&lt;p&gt;Flutter code is powered by the world-class &lt;a href=&quot;https://dart.dev/&quot;&gt;Dart programming language&lt;/a&gt;, which enables compilation to 32-bit and 64-bit ARM machine code for iOS and Android, JavaScript and WebAssembly for the web, as well as Intel x64 and ARM for desktop devices.&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;https://github.com/flutter/website/raw/main/site/web/assets/images/docs/homepage/dart-diagram-small.png?raw=true&quot; alt=&quot;Dart diagram&quot; /&gt;&lt;/p&gt; 
&lt;h3&gt;Productive development&lt;/h3&gt; 
&lt;p&gt;Flutter offers &lt;a href=&quot;https://docs.flutter.dev/tools/hot-reload&quot;&gt;stateful hot reload&lt;/a&gt;, allowing you to make changes to your code and see the results instantly without restarting your app or losing its state.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://docs.flutter.dev/tools/hot-reload&quot;&gt;&lt;img src=&quot;https://github.com/flutter/website/raw/main/site/web/assets/images/docs/tools/android-studio/hot-reload.gif?raw=true&quot; alt=&quot;Hot reload animation&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Extensible and open model&lt;/h3&gt; 
&lt;p&gt;Flutter works with any development tool (or none at all), and also includes editor plug-ins for both &lt;a href=&quot;https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter&quot;&gt;Visual Studio Code&lt;/a&gt; and &lt;a href=&quot;https://plugins.jetbrains.com/plugin/9212-flutter&quot;&gt;IntelliJ / Android Studio&lt;/a&gt;. Flutter provides &lt;a href=&quot;https://pub.dev/flutter&quot;&gt;tens of thousands of packages&lt;/a&gt; to speed your development, regardless of your target platform. And accessing other native code is easy, with support for both FFI (&lt;a href=&quot;https://docs.flutter.dev/platform-integration/android/c-interop&quot;&gt;on Android&lt;/a&gt;, &lt;a href=&quot;https://docs.flutter.dev/platform-integration/ios/c-interop&quot;&gt;on iOS&lt;/a&gt;, &lt;a href=&quot;https://docs.flutter.dev/platform-integration/macos/c-interop&quot;&gt;on macOS&lt;/a&gt;, and &lt;a href=&quot;https://docs.flutter.dev/platform-integration/windows/building#integrating-with-windows&quot;&gt;on Windows&lt;/a&gt;) as well as &lt;a href=&quot;https://docs.flutter.dev/platform-integration/platform-channels&quot;&gt;platform-specific APIs&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Flutter is a fully open-source project, and we welcome contributions. Information on how to get started can be found in our &lt;a href=&quot;https://raw.githubusercontent.com/flutter/flutter/master/CONTRIBUTING.md&quot;&gt;contributor guide&lt;/a&gt;.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/31792824/fb7e5700-6ccc-11e9-83fe-f602e1e1a9f1" medium="image" />
      
    </item>
    
    <item>
      <title>ente-io/ente</title>
      <link>https://github.com/ente-io/ente</link>
      <description>&lt;p&gt;💚 End-to-end encrypted cloud for everything.&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/ente-rocketship.png&quot; width=&quot;400&quot; /&gt; 
 &lt;p&gt;Fully open source end-to-end encrypted photos, authenticators and more.&lt;/p&gt; 
&lt;/div&gt; 
&lt;h1&gt;Ente&lt;/h1&gt; 
&lt;p&gt;Ente is a service that provides a fully open source, end-to-end encrypted platform for you to store your data in the cloud without needing to trust the service provider. On top of this platform, we have built three apps so far: Ente Photos (an alternative to Apple and Google Photos), Ente Locker (a safe space for your most important documents and credentials), and Ente Auth (a 2FA alternative to the deprecated Authy).&lt;/p&gt; 
&lt;p&gt;This monorepo contains all our source code - the client apps (iOS / Android / F-Droid / Web / Linux / macOS / Windows) for both the products (and more planned future ones!), and the server that powers them.&lt;/p&gt; 
&lt;p&gt;Our source code and cryptography have been externally audited by Cure53 (a German cybersecurity firm, arguably the world&#39;s best), Symbolic Software (French cryptography experts) and Fallible (an Indian penetration testing firm).&lt;/p&gt; 
&lt;p&gt;Learn more at &lt;a href=&quot;https://ente.com&quot;&gt;ente.com&lt;/a&gt;.&lt;/p&gt; 
&lt;br /&gt; 
&lt;h2&gt;Ente Photos&lt;/h2&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/photos.png&quot; alt=&quot;Screenshots of Ente Photos&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;Our flagship product. 3x data replication. Face detection. Semantic search. Private sharing. Collaborative albums. Family plans. Easy import, easier export. Background uploads. The list goes on. And of course, all of this, while being fully end-to-end encrypted across platforms.&lt;/p&gt; 
&lt;p&gt;Ente Photos is a paid service, but we offer 10GB of free storage. You can also clone this repository and choose to self-host.&lt;/p&gt; 
&lt;br /&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;p&gt;&lt;a href=&quot;https://apps.apple.com/app/id1542026904&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/app-store-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://play.google.com/store/apps/details?id=io.ente.photos&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/play-store-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://f-droid.org/packages/io.ente.photos.fdroid/&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/f-droid-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22io.ente.photos.independent%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fente-io%2Fente%22%2C%22author%22%3A%22ente-io%22%2C%22name%22%3A%22Ente%20Photos%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Afalse%2C%5C%22dontSortReleasesList%5C%22%3Atrue%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22ente-photos*%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%7D%22%2C%22overrideSource%22%3Anull%7D&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/obtainium-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://ente.com/download/desktop&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/desktop-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://photos.ente.com&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/web-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;br /&gt; 
&lt;h2&gt;Ente Auth&lt;/h2&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/auth.png&quot; alt=&quot;Screenshots of Ente Photos&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;Our labour of love. Two years ago, while building Ente Photos, we realized that there was no open source end-to-end encrypted authenticator app. We already had the building blocks, so we built one.&lt;/p&gt; 
&lt;p&gt;Ente Auth is free, and will remain free forever. If you like the service and want to give back, please check out Ente Photos or spread the word.&lt;/p&gt; 
&lt;br /&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;p&gt;&lt;a href=&quot;https://apps.apple.com/app/id6444121398&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/app-store-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://play.google.com/store/apps/details?id=io.ente.auth&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/play-store-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://f-droid.org/packages/io.ente.auth/&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/f-droid-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22io.ente.auth.independent%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fente-io%2Fente%22%2C%22author%22%3A%22ente-io%22%2C%22name%22%3A%22Ente%20Auth%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Afalse%2C%5C%22dontSortReleasesList%5C%22%3Atrue%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22ente-auth*%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%7D%22%2C%22overrideSource%22%3Anull%7D&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/obtainium-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/ente-io/ente/releases?q=tag%3Aauth-v4&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/desktop-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://auth.ente.com&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/web-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;br /&gt; 
&lt;h2&gt;Ente Locker&lt;/h2&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/locker.png&quot; alt=&quot;Screenshots of Ente Locker&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;Protect your most important documents, credentials, and notes with end-to-end encryption. Share privately with people you trust, and set up access for emergencies. Available for iOS and Android.&lt;/p&gt; 
&lt;p&gt;Ente Locker is free for up to 100 items. If you&#39;re subscribed to Ente Photos, you can store up to 1000 items. Learn more at &lt;a href=&quot;https://ente.com/locker&quot;&gt;ente.com/locker&lt;/a&gt;.&lt;/p&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;p&gt;&lt;a href=&quot;https://apps.apple.com/us/app/ente-locker/id6747611956&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/app-store-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://play.google.com/store/apps/details?id=io.ente.locker&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/play-store-badge.png&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22io.ente.locker.independent%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fente-io%2Fente%22%2C%22author%22%3A%22ente-io%22%2C%22name%22%3A%22Ente%20Locker%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Afalse%2C%5C%22dontSortReleasesList%5C%22%3Atrue%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22ente-locker*%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%7D%22%2C%22overrideSource%22%3Anull%7D&quot;&gt;&lt;img height=&quot;40&quot; src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/obtainium-badge.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;br /&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;Want to get aboard the Ente hype train? Welcome along! Don&#39;t hesitate if you&#39;re not a developer, there are many other important ways in which &lt;a href=&quot;https://raw.githubusercontent.com/ente-io/ente/main/CONTRIBUTING.md&quot;&gt;you can contribute&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Support&lt;/h2&gt; 
&lt;p&gt;We are never more than an email away. For the various ways to ask for help, please see our &lt;a href=&quot;https://raw.githubusercontent.com/ente-io/ente/main/SUPPORT.md&quot;&gt;support guide&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Community&lt;/h2&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/ente-ducky.png&quot; width=&quot;200&quot; alt=&quot;Ente&#39;s Mascot, Ducky,
    inviting people to Ente&#39;s source code repository&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;Please visit the &lt;a href=&quot;https://ente.com/about#community&quot;&gt;community section&lt;/a&gt; for all the ways to connect with our community.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://discord.gg/z2YVKkycX3&quot;&gt;&lt;img src=&quot;https://img.shields.io/discord/948937918347608085?style=for-the-badge&amp;amp;logo=Discord&amp;amp;logoColor=white&amp;amp;label=Discord&quot; alt=&quot;Discord&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://ente.com/blog/rss.xml&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/blog-rss-F88900?style=for-the-badge&amp;amp;logo=rss&amp;amp;logoColor=white&quot; alt=&quot;Ente&#39;s Blog RSS&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://twitter.com/enteio&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/twitter.svg?sanitize=true&quot; alt=&quot;Twitter&quot; /&gt;&lt;/a&gt; &amp;nbsp; &lt;a href=&quot;https://fosstodon.org/@ente&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ente-io/ente/main/.github/assets/mastodon.svg?sanitize=true&quot; alt=&quot;Mastodon&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;Security&lt;/h2&gt; 
&lt;p&gt;If you believe you have found a security vulnerability, please responsibly disclose it by emailing &lt;a href=&quot;mailto:security@ente.com&quot;&gt;security@ente.com&lt;/a&gt; or &lt;a href=&quot;https://github.com/ente-io/ente/security/advisories/new&quot;&gt;using this link&lt;/a&gt; instead of opening a public issue. We will investigate all legitimate reports. To know more, please see our &lt;a href=&quot;https://raw.githubusercontent.com/ente-io/ente/main/SECURITY.md&quot;&gt;security policy&lt;/a&gt;.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/560284721/7394be6e-2bba-457a-ada7-ddf8e9901294" medium="image" />
      
    </item>
    
    <item>
      <title>akashdh11/skystream</title>
      <link>https://github.com/akashdh11/skystream</link>
      <description>&lt;p&gt;SkyStream is a modern, cross-platform media streaming client inspired by CloudStream. It uses a custom JavaScript runtime for plugins, allowing users to scrape and stream content from various sources on Android, iOS, Windows, macOS, and Linux from a single codebase.&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;SkyStream&lt;/h1&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/releases&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/downloads/akashdh11/skystream/total?style=for-the-badge&amp;amp;color=1f6feb&quot; /&gt; &lt;/a&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/stargazers&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/stars/akashdh11/skystream?style=for-the-badge&amp;amp;color=f1c40f&quot; /&gt; &lt;/a&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/releases&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/v/release/akashdh11/skystream?style=for-the-badge&amp;amp;color=f39c12&quot; /&gt; &lt;/a&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/issues&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/issues/akashdh11/skystream?style=for-the-badge&amp;amp;color=e74c3c&quot; /&gt; &lt;/a&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/issues?q=is%3Aissue+is%3Aclosed&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/issues-search/akashdh11/skystream?query=is%3Aissue+is%3Aclosed&amp;amp;style=for-the-badge&amp;amp;color=2ecc71&quot; /&gt; &lt;/a&gt; 
 &lt;a href=&quot;https://github.com/akashdh11/skystream/commits/main&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/akashdh11/skystream?style=for-the-badge&amp;amp;color=17a2b8&quot; /&gt; &lt;/a&gt; 
&lt;/div&gt; 
&lt;p&gt;&lt;strong&gt;⚠️ Warning: By default, this app doesn&#39;t provide any video sources; you have to install extensions to add functionality to the app.&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;A new, cross-platform media streaming application inspired by CloudStream.&lt;/strong&gt;&lt;/p&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: This project is an independent application built with Flutter. While it supports similar extension formats, it is a simplified, modern re-imagining and is &lt;strong&gt;not&lt;/strong&gt; a direct clone or fork of the official client.&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;&lt;strong&gt;Please don&#39;t create illegal extensions or use any that host any copyrighted media.&lt;/strong&gt; This project does not condone copyright infringement.&lt;/p&gt; 
&lt;h2&gt;Community&lt;/h2&gt; 
&lt;p&gt;Join the discussion, get help, or find new extensions on our Telegram channel or Discord server:&lt;/p&gt; 
&lt;a href=&quot;https://t.me/+Ez5Vsv2pUUFjZmNl&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/Telegram-Channel-blue?style=for-the-badge&amp;amp;logo=telegram&quot; /&gt; &lt;/a&gt; 
&lt;br /&gt; 
&lt;a href=&quot;https://discord.gg/73XGA8Mxn9&quot;&gt; &lt;img src=&quot;https://invidget.switchblade.xyz/73XGA8Mxn9&quot; /&gt; &lt;/a&gt; 
&lt;h2&gt;Overview&lt;/h2&gt; 
&lt;p&gt;SkyStream is a modern, media streaming client. It draws inspiration from the versatile architecture of CloudStream but implements a custom, cross-platform JavaScript engine for extensions, enabling support for Android, iOS, and Desktop from a single codebase.&lt;/p&gt; 
&lt;h3&gt;Built With&lt;/h3&gt; 
&lt;p&gt;&lt;img src=&quot;https://img.shields.io/badge/Flutter-%2302569B.svg?style=for-the-badge&amp;amp;logo=Flutter&amp;amp;logoColor=white&quot; alt=&quot;Flutter&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/dart-%230175C2.svg?style=for-the-badge&amp;amp;logo=dart&amp;amp;logoColor=white&quot; alt=&quot;Dart&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Riverpod-%232D3748.svg?style=for-the-badge&amp;amp;logo=riverpod&amp;amp;logoColor=white&quot; alt=&quot;Riverpod&quot; /&gt; &lt;img src=&quot;https://img.shields.io/badge/Hive-%23DE3027.svg?style=for-the-badge&amp;amp;logo=hive&amp;amp;logoColor=white&quot; alt=&quot;Hive&quot; /&gt;&lt;/p&gt; 
&lt;h3&gt;Screenshots&lt;/h3&gt; 
&lt;h3&gt;📱 Mobile&lt;/h3&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/mobile/home.png&quot; width=&quot;360&quot; /&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/mobile/discover.png&quot; width=&quot;360&quot; /&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/mobile/details.png&quot; width=&quot;360&quot; /&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/mobile/settings.png&quot; width=&quot;360&quot; /&gt; &lt;/p&gt; 
&lt;h3&gt;📺 Large screen&lt;/h3&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/tv/details_1.png&quot; width=&quot;720&quot; /&gt; &lt;img src=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/screenshots/tv/details_2.png&quot; width=&quot;720&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Supported Platforms&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th style=&quot;text-align:left&quot;&gt;Platform&lt;/th&gt; 
   &lt;th style=&quot;text-align:center&quot;&gt;Support&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;Android&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;Android TV&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;iOS&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅ (Sideloading required)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;Windows&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;macOS&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td style=&quot;text-align:left&quot;&gt;&lt;strong&gt;Linux&lt;/strong&gt;&lt;/td&gt; 
   &lt;td style=&quot;text-align:center&quot;&gt;✅&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;✨ Features&lt;/h2&gt; 
&lt;p&gt;💡 &lt;strong&gt;SkyStream&lt;/strong&gt; is designed as a &lt;strong&gt;scalable, plugin-driven, cross-platform streaming platform&lt;/strong&gt;—delivering flexibility, performance, and a seamless viewing experience across all devices.&lt;/p&gt; 
&lt;h3&gt;🔎 Powerful Search &amp;amp; Discovery&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🔍 &lt;strong&gt;Plugin-wise Search&lt;/strong&gt; – Search within specific providers for more accurate results&lt;/li&gt; 
 &lt;li&gt;💡 &lt;strong&gt;Smart Search Suggestions&lt;/strong&gt; – Get real-time suggestions while typing&lt;/li&gt; 
 &lt;li&gt;🌐 &lt;strong&gt;Advanced Discovery (TMDB Integration)&lt;/strong&gt; – Explore trending, popular, and filtered content&lt;/li&gt; 
 &lt;li&gt;🎯 &lt;strong&gt;Custom Home Experience&lt;/strong&gt; – Set Explore as your default landing screen&lt;/li&gt; 
 &lt;li&gt;🌍 &lt;strong&gt;Multi-language Filtering&lt;/strong&gt; – Discover content across 40+ languages&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🎬 Advanced Streaming Experience&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;📺 &lt;strong&gt;Live Streaming Support&lt;/strong&gt; – Watch live content with improved reliability&lt;/li&gt; 
 &lt;li&gt;▶️ &lt;strong&gt;Resume Playback&lt;/strong&gt; – Continue watching from where you left off&lt;/li&gt; 
 &lt;li&gt;⏩ &lt;strong&gt;Playback Speed Control&lt;/strong&gt; – Adjust speed to your preference&lt;/li&gt; 
 &lt;li&gt;🎚️ &lt;strong&gt;Default Quality Selection&lt;/strong&gt; – Set preferred streaming quality&lt;/li&gt; 
 &lt;li&gt;📑 &lt;strong&gt;Episode Overlay&lt;/strong&gt; – Browse and switch episodes inside the player&lt;/li&gt; 
 &lt;li&gt;🔍 &lt;strong&gt;Detailed Loading Insights&lt;/strong&gt; – View source details while content loads&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🌐 Multi-Provider &amp;amp; Plugin System&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🔌 &lt;strong&gt;Plugin-Based Architecture&lt;/strong&gt; – Extend functionality with custom plugins&lt;/li&gt; 
 &lt;li&gt;🔁 &lt;strong&gt;Multi-Provider Support&lt;/strong&gt; – Access multiple content sources within a single plugin&lt;/li&gt; 
 &lt;li&gt;🌍 &lt;strong&gt;Domain Switching&lt;/strong&gt; – Switch domains seamlessly for better availability&lt;/li&gt; 
 &lt;li&gt;🪵 &lt;strong&gt;In-App Logs (Developer Tools)&lt;/strong&gt; – Debug plugins directly inside the app&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;💬 Subtitles &amp;amp; Content Flexibility&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🌍 &lt;strong&gt;External Subtitles Support&lt;/strong&gt; – Integrated with: 
  &lt;ul&gt; 
   &lt;li&gt;OpenSubtitles&lt;/li&gt; 
   &lt;li&gt;SubDL&lt;/li&gt; 
   &lt;li&gt;Subsource&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;📝 &lt;strong&gt;Subtitle Styling&lt;/strong&gt; – Customizable font size and colors&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;📥 Offline &amp;amp; External Playback&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;⬇️ &lt;strong&gt;Download Content&lt;/strong&gt; – Watch offline anytime&lt;/li&gt; 
 &lt;li&gt;🎥 &lt;strong&gt;External Player Support&lt;/strong&gt; – Play content in your preferred media player&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;📺 Cross-Platform Support&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;📱 Android &amp;amp; iOS&lt;/li&gt; 
 &lt;li&gt;💻 macOS, Windows &amp;amp; Linux&lt;/li&gt; 
 &lt;li&gt;📺 Android TV + tvOS (Apple TV) support&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;⚡ Performance &amp;amp; Reliability&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🚀 &lt;strong&gt;Optimized Performance&lt;/strong&gt; – Faster load times and smoother UI&lt;/li&gt; 
 &lt;li&gt;🧠 &lt;strong&gt;New JavaScript Engine (&lt;code&gt;quick_js_ng&lt;/code&gt;)&lt;/strong&gt; – Better execution and compatibility&lt;/li&gt; 
 &lt;li&gt;🌐 &lt;strong&gt;DNS over HTTPS&lt;/strong&gt; – Bypass ISP restrictions for improved access&lt;/li&gt; 
 &lt;li&gt;📉 &lt;strong&gt;Reduced App Size&lt;/strong&gt; – Lightweight and efficient&lt;/li&gt; 
 &lt;li&gt;🔧 &lt;strong&gt;Stability Improvements&lt;/strong&gt; – Enhanced reliability across all platforms&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🎨 Modern UI/UX&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🎨 &lt;strong&gt;Clean &amp;amp; Modern Interface&lt;/strong&gt; – Redesigned Home and Details screens&lt;/li&gt; 
 &lt;li&gt;🧭 &lt;strong&gt;Improved Navigation&lt;/strong&gt; – Explore-based content discovery&lt;/li&gt; 
 &lt;li&gt;🌗 &lt;strong&gt;Theme Improvements&lt;/strong&gt; – Better light mode and UI consistency&lt;/li&gt; 
 &lt;li&gt;🖥️ &lt;strong&gt;Enhanced Desktop Experience&lt;/strong&gt; – Improved windowed mode support&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🌍 Global Accessibility&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🌐 &lt;strong&gt;40+ Language Support&lt;/strong&gt; – Fully localized experience&lt;/li&gt; 
 &lt;li&gt;🎯 &lt;strong&gt;Region-aware Discovery&lt;/strong&gt; – Content tailored to global audiences&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;📥 Installation&lt;/h2&gt; 
&lt;p&gt;Download the latest version from the &lt;strong&gt;&lt;a href=&quot;https://github.com/akashdh11/skystream/releases/latest&quot;&gt;Releases Page&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt; 
&lt;h3&gt;🤖 Android / Android TV&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Download the &lt;code&gt;skystream-android-arm64-v8a-v2.3.2.apk&lt;/code&gt; (recommended for most modern phones) or &lt;code&gt;skystream-android-armeabi-v7a-v2.3.2.apk&lt;/code&gt; (for TV) from Releases.&lt;/li&gt; 
 &lt;li&gt;Open the file and tap &lt;strong&gt;Install&lt;/strong&gt;. 
  &lt;ul&gt; 
   &lt;li&gt;&lt;em&gt;Note: You may need to allow &quot;Install from Unknown Sources&quot; in your browser settings.&lt;/em&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Open SkyStream and install extensions via &lt;strong&gt;Settings &amp;gt; Extensions&lt;/strong&gt;.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;🍏 iOS (Sideloading)&lt;/h3&gt; 
&lt;p&gt;SkyStream is not on the App Store. You must &lt;strong&gt;sideload&lt;/strong&gt; it using a computer.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Requirements:&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;A Computer (Windows or macOS)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://impactor.khcrysalis.dev/&quot;&gt;Impactor&lt;/a&gt; (Free and OpenSource) or &lt;a href=&quot;https://sideloadly.io/&quot;&gt;Sideloadly&lt;/a&gt; (Free)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://support.apple.com/en-us/106372&quot;&gt;iTunes&lt;/a&gt; (if on Windows)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Guide&lt;/strong&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://impactor.khcrysalis.dev/docs/getting-started/installing/&quot;&gt;Impactor Guide&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=vqTsavQc3lQ&quot;&gt;Sideloadly Video Guide&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;strong&gt;Steps:&lt;/strong&gt;&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Download &lt;code&gt;skystream-ios-unsigned-v2.3.2.ipa&lt;/code&gt; from the &lt;a href=&quot;https://github.com/akashdh11/skystream/releases/latest&quot;&gt;Releases Page&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;Open &lt;strong&gt;Impactor&lt;/strong&gt; or &lt;strong&gt;Sideloadly&lt;/strong&gt; on your computer.&lt;/li&gt; 
 &lt;li&gt;Connect your iPhone/iPad via USB.&lt;/li&gt; 
 &lt;li&gt;Drag the &lt;code&gt;.ipa&lt;/code&gt; file into the Sideloadly window.&lt;/li&gt; 
 &lt;li&gt;Enter your &lt;strong&gt;Apple ID&lt;/strong&gt; in the configured field.&lt;/li&gt; 
 &lt;li&gt;Click &lt;strong&gt;Start&lt;/strong&gt;.&lt;/li&gt; 
 &lt;li&gt;Once finished, the app will appear on your home screen.&lt;/li&gt; 
 &lt;li&gt;On your device, go to &lt;strong&gt;Settings &amp;gt; General &amp;gt; VPN &amp;amp; Device Management&lt;/strong&gt;, tap your email, and select &lt;strong&gt;Trust&lt;/strong&gt;.&lt;/li&gt; 
 &lt;li&gt;Set up Wi-Fi sync to automatically refresh your apps in the background&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;💻 Windows / macOS / Linux&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;Download the appropriate file for your OS (&lt;code&gt;skystream-windows.exe&lt;/code&gt;, &lt;code&gt;skystream-macos.dmg&lt;/code&gt;, &lt;code&gt;skystream-linux.deb&lt;/code&gt;, etc.).&lt;/li&gt; 
 &lt;li&gt;Install the app.&lt;/li&gt; 
 &lt;li&gt;Run the application from your app launcher or terminal. 
  &lt;ul&gt; 
   &lt;li&gt;&lt;em&gt;macOS Note: If you see an “Unidentified Developer” warning, go to Settings → Privacy &amp;amp; Security and click Open Anyway to allow the app (one-time step).&lt;/em&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;em&gt;Linux Note: You may need to install the following packages:&lt;/em&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;sudo apt-get update
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libmpv-dev libasound2-dev
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;🛠️ Build from Source&lt;/h2&gt; 
&lt;p&gt;To set up the development environment, clone the repository and run the setup commands. Detailed instructions for environment configuration, platform-specific builds, and project architecture can be found in our contributor guide:&lt;/p&gt; 
&lt;p&gt;👉 &lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/docs/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt; 
&lt;h3&gt;Quick Start&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/akashdh11/skystream.git
cd skystream
flutter pub get
flutter gen-l10n
dart run build_runner build --delete-conflicting-outputs
flutter run
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;🤝 Contributing&lt;/h2&gt; 
&lt;p&gt;We welcome contributions of all kinds! Whether you are fixing a bug, adding a feature, or helping with translations, your help is appreciated.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Found a bug?&lt;/strong&gt; Report it on our &lt;strong&gt;&lt;a href=&quot;https://github.com/akashdh11/skystream/issues&quot;&gt;GitHub Issues&lt;/a&gt;&lt;/strong&gt; page.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Want to translate?&lt;/strong&gt; See our &lt;strong&gt;&lt;a href=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/docs/CONTRIBUTING_TRANSLATIONS.md&quot;&gt;Translation Guide&lt;/a&gt;&lt;/strong&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Want to build a plugin?&lt;/strong&gt; Check the &lt;strong&gt;&lt;a href=&quot;https://github.com/akashdh11/skystream-tools/raw/main/DEVELOPER.md&quot;&gt;Extension Guide&lt;/a&gt;&lt;/strong&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Need help?&lt;/strong&gt; Join the community on &lt;strong&gt;&lt;a href=&quot;https://discord.gg/73XGA8Mxn9&quot;&gt;Discord&lt;/a&gt;&lt;/strong&gt; or &lt;strong&gt;&lt;a href=&quot;https://t.me/+Ez5Vsv2pUUFjZmNl&quot;&gt;Telegram&lt;/a&gt;&lt;/strong&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;hr /&gt; 
&lt;h2&gt;FAQ&lt;/h2&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;b&gt;How do I install extensions?&lt;/b&gt;&lt;/summary&gt; SkyStream uses `.sky` or `.js` extension files. You can install them by navigating to 
 &lt;b&gt;Settings &amp;gt; Extensions &amp;gt; Add Repository&lt;/b&gt; and entering a repository URL (e.g., using a shortcode). 
&lt;/details&gt; 
&lt;details&gt; 
 &lt;summary&gt;&lt;b&gt;Where is the media stored?&lt;/b&gt;&lt;/summary&gt; SkyStream is a streaming client and does not host any content. All media is streamed directly from the third-party extensions you install. 
&lt;/details&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;a href=&quot;https://www.star-history.com/#akashdh11/skystream&amp;amp;Date&quot;&gt; 
 &lt;picture&gt; 
  &lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://api.star-history.com/svg?repos=akashdh11/skystream&amp;amp;type=date&amp;amp;theme=dark&quot; /&gt; 
  &lt;source media=&quot;(prefers-color-scheme: light)&quot; srcset=&quot;https://api.star-history.com/svg?repos=akashdh11/skystream&amp;amp;type=Date&quot; /&gt; 
  &lt;img alt=&quot;Star History Chart&quot; src=&quot;https://api.star-history.com/svg?repos=akashdh11/skystream&amp;amp;type=Date&quot; /&gt; 
 &lt;/picture&gt; &lt;/a&gt; 
&lt;h2&gt;Contributors&lt;/h2&gt; 
&lt;a href=&quot;https://github.com/akashdh11/skystream/graphs/contributors&quot;&gt; &lt;img src=&quot;https://contrib.rocks/image?repo=akashdh11/skystream&quot; /&gt; &lt;/a&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/akashdh11/skystream/main/LICENSE&quot;&gt;MIT&lt;/a&gt;&lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/a494abd1350388959ab005b00d19f9d94ebe640bb0ef6fb2703abd43a39ffbd7/akashdh11/skystream" medium="image" />
      
    </item>
    
    <item>
      <title>simonoppowa/OpenNutriTracker</title>
      <link>https://github.com/simonoppowa/OpenNutriTracker</link>
      <description>&lt;p&gt;🍴 OpenNutriTracker is a free and open source calorie tracker with a focus on simplicity and privacy.&lt;/p&gt;&lt;hr&gt;&lt;p align=&quot;center&quot;&gt; &lt;img alt=&quot;Logo&quot; src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/assets/icon/ont_logo_square.png&quot; width=&quot;128&quot; /&gt; &lt;/p&gt;
&lt;h1 align=&quot;center&quot;&gt;OpenNutriTracker&lt;/h1&gt; 
&lt;p&gt;&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://opensource.org/licenses/MIT&quot; alt=&quot;License&quot;&gt; &lt;img src=&quot;https://img.shields.io/badge/license-GPLv3-blue&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/simonoppowa/OpenNutriTracker/stargazers&quot; alt=&quot;GitHub Stars&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/stars/simonoppowa/OpenNutriTracker.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/simonoppowa/OpenNutriTracker/issues&quot; alt=&quot;GitHub Issues&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/issues/simonoppowa/OpenNutriTracker.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/simonoppowa/OpenNutriTracker/pulls&quot; alt=&quot;GitHub Pull Requests&quot;&gt; &lt;img src=&quot;https://img.shields.io/github/issues-pr/simonoppowa/OpenNutriTracker.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;h2&gt;Description&lt;/h2&gt; 
&lt;p&gt;OpenNutriTracker is an open-source mobile application designed to simplify nutritional tracking and management. Whether you are looking to improve your health, lose weight, or simply maintain a balanced diet, OpenNutriTracker provides a minimalistic interface to easily track and analyze your daily nutrition.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://simonoppowa.github.io/OpenNutriTracker-Website/&quot;&gt;Website&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Screenshots&lt;/h2&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img alt=&quot;Logo&quot; src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png&quot; width=&quot;20%&quot; /&gt; &amp;nbsp;&amp;nbsp; &lt;img alt=&quot;Logo&quot; src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png&quot; width=&quot;20%&quot; /&gt; &amp;nbsp;&amp;nbsp; &lt;img alt=&quot;Logo&quot; src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png&quot; width=&quot;20%&quot; /&gt; &amp;nbsp;&amp;nbsp; &lt;img alt=&quot;Logo&quot; src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png&quot; width=&quot;20%&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://apps.apple.com/us/app/opennutritracker/id6451490901&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/appstore_banner.png&quot; width=&quot;30%&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.opennutritracker.ont.opennutritracker&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/fastlane/metadata/android/en-US/images/playstore_banner.png&quot; width=&quot;30%&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Key Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;🍎 Nutritional Tracking:&lt;/strong&gt; Easily log your meals and snacks, and access a vast database of food items and ingredients to get detailed nutritional information.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;📓 Food Diary:&lt;/strong&gt; Maintain a comprehensive food diary to keep track of your daily food consumption, habits, and progress.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;🍽️ Custom Meals:&lt;/strong&gt; Plan your meals in advance, create personalized meal plans, and optimize them according to your dietary goals.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;📷 Barcode Scanner:&lt;/strong&gt; Scan barcodes on packaged food items to instantly retrieve their nutritional information.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;🔒 Privacy Focused:&lt;/strong&gt; OpenNutriTracker prioritizes the privacy its users. It does not collect or share any personal data without your consent.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;🚫💰 No Subscription, In-App Purchases, or Ads:&lt;/strong&gt; OpenNutriTracker is completely free to use, without any subscription fees, in-app purchases, or intrusive advertisements.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Privacy&lt;/h2&gt; 
&lt;p&gt;See &lt;a href=&quot;https://www.iubenda.com/privacy-policy/53501884&quot;&gt;Data Protection&lt;/a&gt;&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Data Encryption&lt;/strong&gt;: All collected user data is encrypted and stored locally on your device&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Minimal Data Collection&lt;/strong&gt;: OpenNutriTracker only collects the necessary information required for tracking nutrition and providing personalized insights. Your data will not be shared with third parties without your consent.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Open-Source&lt;/strong&gt;: OpenNutriTracker is an open-source application&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;TODOs&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;s&gt;Add serving sizes to meals&lt;/s&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;s&gt;Add Imperial unit support&lt;/s&gt;&lt;/li&gt; 
 &lt;li&gt;Add support for Material You themes&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Contribution&lt;/h2&gt; 
&lt;p&gt;Contributions to OpenNutriTracker are welcome! If you find any issues or have suggestions for new features, please open an issue or submit a pull request. See &lt;a href=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; for the project&#39;s conventions — including the requirement to target the &lt;code&gt;develop&lt;/code&gt; branch and the steps for adding localized strings.&lt;/p&gt; 
&lt;p&gt;Thanks to all the contributors: &lt;a href=&quot;https://github.com/simonoppowa/OpenNutriTracker/graphs/contributors&quot;&gt; &lt;img src=&quot;https://contrib.rocks/image?repo=simonoppowa/OpenNutriTracker&quot; /&gt; &lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Getting Started With Development&lt;/h3&gt; 
&lt;p&gt;See the &lt;a href=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/GettingStarted.md&quot;&gt;Getting Started&lt;/a&gt; file for more information.&lt;/p&gt; 
&lt;h2&gt;Disclaimer&lt;/h2&gt; 
&lt;p&gt;OpenNutriTracker is not a medical application. All data provided is not validated and should be used with caution. Please maintain a healthy lifestyle and consult a professional if you have any problems. Use during illness, pregnancy or lactation is not recommended.&lt;/p&gt; 
&lt;p&gt;The application is still under construction. Errors, bugs and crashes might occur.&lt;/p&gt; 
&lt;h2&gt;Acknowledgments&lt;/h2&gt; 
&lt;p&gt;The OpenNutriTracker project was inspired by the need for a simple and effective nutrition tracking tool. The food database used in OpenNutriTracker is powered by &lt;a href=&quot;https://world.openfoodfacts.org/&quot;&gt;Open Food Facts&lt;/a&gt; and &lt;a href=&quot;https://fdc.nal.usda.gov/&quot;&gt;Food Data Central&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;This project is licensed under the GNU General Public License v3.0 License. See the &lt;a href=&quot;https://raw.githubusercontent.com/simonoppowa/OpenNutriTracker/main/LICENSE&quot;&gt;LICENSE&lt;/a&gt; file for more information.&lt;/p&gt; 
&lt;h2&gt;Contact&lt;/h2&gt; 
&lt;p&gt;For questions, suggestions, or collaborations, feel free to contact the project maintainer:&lt;/p&gt; 
&lt;p&gt;Simon Oppowa&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;GitHub: &lt;a href=&quot;https://github.com/simonoppowa&quot;&gt;@simonoppowa&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Email: &lt;a href=&quot;mailto:opennutritracker-dev@pm.me&quot;&gt;opennutritracker-dev@pm.me&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/539619974/73bb8757-6040-49d2-bde7-6e2f01642971" medium="image" />
      
    </item>
    
    <item>
      <title>krille-chan/fluffychat</title>
      <link>https://github.com/krille-chan/fluffychat</link>
      <description>&lt;p&gt;The cutest instant messenger in the [matrix]&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;img src=&quot;https://github.com/krille-chan/fluffychat/raw/main/assets/banner_transparent.png?raw=true&quot; alt=&quot;Screenshot&quot; /&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://fluffy.chat&quot;&gt;FluffyChat&lt;/a&gt; is an open source, nonprofit and cute [&lt;a href=&quot;https://matrix.org&quot;&gt;matrix&lt;/a&gt;] client written in &lt;a href=&quot;https://flutter.dev&quot;&gt;Flutter&lt;/a&gt;. The goal of the app is to create an easy to use instant messenger which is open source and accessible for everyone.&lt;/p&gt; 
&lt;h3&gt;Links:&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;🌐 &lt;a href=&quot;https://hosted.weblate.org/projects/fluffychat/&quot;&gt;[Weblate] Translate FluffyChat into your language&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;🌍 &lt;a href=&quot;https://matrix.to/#/#fluffy-space:matrix.org&quot;&gt;[m] Join the community&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;📰 &lt;a href=&quot;https://troet.cafe/@krille&quot;&gt;[Mastodon] Get updates on social media&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;🖥️ &lt;a href=&quot;https://famedly.com/kontakt&quot;&gt;[Famedly] Server hosting and professional support&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;💝 &lt;a href=&quot;https://de.liberapay.com/KrilleChritzelius&quot;&gt;[Liberapay] Support FluffyChat development&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;a href=&quot;https://ko-fi.com/C1C86VN53&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;36&quot; style=&quot;border:0px;height:36px;&quot; src=&quot;https://storage.ko-fi.com/cdn/kofi5.png?v=3&quot; border=&quot;0&quot; alt=&quot;Buy Me a Coffee at ko-fi.com&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;Screenshots:&lt;/h3&gt; 
&lt;img src=&quot;https://github.com/krille-chan/fluffychat-website/raw/main/src/assets/screenshots/mobile.png?raw=true&quot; height=&quot;300&quot; /&gt; 
&lt;img src=&quot;https://github.com/krille-chan/fluffychat-website/raw/main/src/assets/screenshots/desktop.png?raw=true&quot; height=&quot;300&quot; /&gt; 
&lt;h1&gt;Features&lt;/h1&gt; 
&lt;ul&gt; 
 &lt;li&gt;📩 Send all kinds of messages, images and files&lt;/li&gt; 
 &lt;li&gt;🎙️ Voice messages&lt;/li&gt; 
 &lt;li&gt;📍 Location sharing&lt;/li&gt; 
 &lt;li&gt;🔔 Push notifications&lt;/li&gt; 
 &lt;li&gt;💬 Unlimited private and public group chats&lt;/li&gt; 
 &lt;li&gt;📣 Public channels with thousands of participants&lt;/li&gt; 
 &lt;li&gt;🛠️ Feature rich group moderation including all matrix features&lt;/li&gt; 
 &lt;li&gt;🔍 Discover and join public groups&lt;/li&gt; 
 &lt;li&gt;🌙 Dark mode&lt;/li&gt; 
 &lt;li&gt;🎨 Material You design&lt;/li&gt; 
 &lt;li&gt;📟 Hides complexity of Matrix IDs behind simple QR codes&lt;/li&gt; 
 &lt;li&gt;😄 Custom emotes and stickers&lt;/li&gt; 
 &lt;li&gt;🌌 Spaces&lt;/li&gt; 
 &lt;li&gt;🔄 Compatible with Element, Nheko, NeoChat and all other Matrix apps&lt;/li&gt; 
 &lt;li&gt;🔐 End to end encryption&lt;/li&gt; 
 &lt;li&gt;🔒 Encrypted chat backup&lt;/li&gt; 
 &lt;li&gt;😀 Emoji verification &amp;amp; cross signing&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;... and much more.&lt;/p&gt; 
&lt;h1&gt;Installation&lt;/h1&gt; 
&lt;p&gt;Please visit the website for installation instructions:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fluffy.chat&quot;&gt;https://fluffy.chat&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h1&gt;How to build&lt;/h1&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;To build FluffyChat you need &lt;a href=&quot;https://flutter.dev&quot;&gt;Flutter&lt;/a&gt; and &lt;a href=&quot;https://www.rust-lang.org/tools/install&quot;&gt;Rust&lt;/a&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Clone the repo:&lt;/p&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;pre&gt;&lt;code&gt;git clone https://github.com/krille-chan/fluffychat.git
cd fluffychat
&lt;/code&gt;&lt;/pre&gt; 
&lt;ol start=&quot;3&quot;&gt; 
 &lt;li&gt;Choose your target platform below and enable support for it. 3.1 If you want, enable Googles Firebase Cloud Messaging:&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;&lt;code&gt;./scripts/add-firebase-messaging.sh&lt;/code&gt;&lt;/p&gt; 
&lt;ol start=&quot;4&quot;&gt; 
 &lt;li&gt;Debug with: &lt;code&gt;flutter run&lt;/code&gt;&lt;/li&gt; 
&lt;/ol&gt; 
&lt;h3&gt;Android&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Build with: &lt;code&gt;flutter build apk&lt;/code&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;iOS / iPadOS&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Have a Mac with Xcode installed, and set up for Xcode-managed app signing&lt;/li&gt; 
 &lt;li&gt;If you want automatic app installation to connected devices, make sure you have Apple Configurator installed, with the Automation Tools (&lt;code&gt;cfgutil&lt;/code&gt;) enabled&lt;/li&gt; 
 &lt;li&gt;Set a few environment variables 
  &lt;ul&gt; 
   &lt;li&gt;FLUFFYCHAT_NEW_TEAM: the Apple Developer team that your certificates should live under&lt;/li&gt; 
   &lt;li&gt;FLUFFYCHAT_NEW_GROUP: the group you want App IDs and such to live under (ie: com.example.fluffychat)&lt;/li&gt; 
   &lt;li&gt;FLUFFYCHAT_INSTALL_IPA: set to &lt;code&gt;1&lt;/code&gt; if you want the IPA to be deployed to connected devices after building, otherwise unset&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;./scripts/build-ios.sh&lt;/code&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Web&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Build with:&lt;/li&gt; 
&lt;/ul&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;./scripts/prepare-web.sh # To install Vodozemac
flutter build web --release
&lt;/code&gt;&lt;/pre&gt; 
&lt;ul&gt; 
 &lt;li&gt;Optionally configure by serving a &lt;code&gt;config.json&lt;/code&gt; at the same path as fluffychat. An example can be found at &lt;code&gt;config.sample.json&lt;/code&gt;. All values there are optional. &lt;strong&gt;Please only the values, you really need&lt;/strong&gt;. If you e.g. only want to change the default homeserver, then only modify the &lt;code&gt;defaultHomeserver&lt;/code&gt; key.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Desktop (Linux, Windows, macOS)&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Enable Desktop support in Flutter: &lt;a href=&quot;https://flutter.dev/desktop&quot;&gt;https://flutter.dev/desktop&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Install custom dependencies (Linux)&lt;/h4&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;sudo apt install libjsoncpp1 libsecret-1-dev libsecret-1-0 librhash0 libwebkit2gtk-4.0-dev lld
&lt;/code&gt;&lt;/pre&gt; 
&lt;ul&gt; 
 &lt;li&gt;Build with one of these:&lt;/li&gt; 
&lt;/ul&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build linux --release
flutter build windows --release
flutter build macos --release
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;How to run integration tests&lt;/h2&gt; 
&lt;p&gt;You need to have docker installed locally! Run the preparation script before every test run:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;./scripts/prepare_integration_test.sh
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Then run all tests with:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;flutter test integration_test/mobile_test.dart
&lt;/code&gt;&lt;/pre&gt; 
&lt;h1&gt;Special thanks&lt;/h1&gt; 
&lt;ul&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/fabiyamada&quot;&gt;Fabiyamada&lt;/a&gt; is a graphics designer and has made the fluffychat logo and the banner. Big thanks for her great designs.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/advocatux&quot;&gt;Advocatux&lt;/a&gt; has made the Spanish translation with great love and care. He always stands by my side and supports my work with great commitment.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Thanks to MTRNord and Sorunome for developing.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Also thanks to all translators and testers! With your help, fluffychat is now available in more than 12 languages.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/madsrh/WoodenBeaver&quot;&gt;WoodenBeaver&lt;/a&gt; sound theme for the notification sound.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;The Matrix Foundation for making and maintaining the &lt;a href=&quot;https://github.com/matrix-org/matrix-spec/raw/main/data-definitions/sas-emoji.json&quot;&gt;emoji translations&lt;/a&gt; used for emoji verification, licensed Apache 2.0&lt;/p&gt; &lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/665942673/d67ac3ee-fe0b-4d83-aee0-294d47fc8678" medium="image" />
      
    </item>
    
    <item>
      <title>bggRGjQaUbCoE/PiliPlus</title>
      <link>https://github.com/bggRGjQaUbCoE/PiliPlus</link>
      <description>&lt;p&gt;PiliPlus&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt; 
 &lt;img width=&quot;200&quot; height=&quot;200&quot; src=&quot;https://raw.githubusercontent.com/bggRGjQaUbCoE/PiliPlus/main/assets/images/logo/logo.png&quot; /&gt; 
&lt;/div&gt; 
&lt;div align=&quot;center&quot;&gt; 
 &lt;h1&gt;PiliPlus&lt;/h1&gt; 
 &lt;div align=&quot;center&quot;&gt; 
  &lt;p&gt;&lt;img src=&quot;https://img.shields.io/github/repo-size/bggRGjQaUbCoE/PiliPlus&quot; alt=&quot;GitHub repo size&quot; /&gt; &lt;img src=&quot;https://img.shields.io/github/stars/bggRGjQaUbCoE/PiliPlus&quot; alt=&quot;GitHub Repo stars&quot; /&gt; &lt;img src=&quot;https://img.shields.io/github/downloads/bggRGjQaUbCoE/PiliPlus/total&quot; alt=&quot;GitHub all releases&quot; /&gt;&lt;/p&gt; 
 &lt;/div&gt; 
 &lt;p&gt;使用Flutter开发的BiliBili第三方客户端&lt;/p&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/bggRGjQaUbCoE/PiliPlus/main/assets/screenshots/510shots_so.png&quot; width=&quot;32%&quot; alt=&quot;home&quot; /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/bggRGjQaUbCoE/PiliPlus/main/assets/screenshots/174shots_so.png&quot; width=&quot;32%&quot; alt=&quot;home&quot; /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/bggRGjQaUbCoE/PiliPlus/main/assets/screenshots/850shots_so.png&quot; width=&quot;32%&quot; alt=&quot;home&quot; /&gt; 
 &lt;br /&gt; 
 &lt;img src=&quot;https://raw.githubusercontent.com/bggRGjQaUbCoE/PiliPlus/main/assets/screenshots/main_screen.png&quot; width=&quot;96%&quot; alt=&quot;home&quot; /&gt; 
 &lt;br /&gt; 
&lt;/div&gt; 
&lt;br /&gt; 
&lt;h2&gt;适配平台&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_0&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_0&quot;&gt; Android&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_1&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_1&quot;&gt; iOS&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_2&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_2&quot;&gt; Pad&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_3&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_3&quot;&gt; Windows&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_4&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_4&quot;&gt; Linux&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;&lt;a href=&quot;https://repology.org/project/piliplus/versions&quot;&gt;&lt;img src=&quot;https://repology.org/badge/vertical-allrepos/piliplus.svg?sanitize=true&quot; alt=&quot;Packaging status&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;refactor&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_5&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_5&quot;&gt; gRPC [wip]&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_6&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_6&quot;&gt; 用户界面&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_7&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_7&quot;&gt; 其他&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;feat&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_8&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_8&quot;&gt; 编辑动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_9&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_9&quot;&gt; DLNA 投屏&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_10&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_10&quot;&gt; 离线缓存/播放&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_11&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_11&quot;&gt; 移动端支持点击弹幕悬停，点赞、复制、举报 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_12&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_12&quot;&gt; 播放音频&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_13&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_13&quot;&gt; 跳过番剧片头/片尾&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_14&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_14&quot;&gt; 安卓端 &lt;code&gt;loudnorm&lt;/code&gt; 适配 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_15&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_15&quot;&gt; Win/Mac 支持极验、短信登录 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_16&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_16&quot;&gt; 视频截取动图 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_17&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_17&quot;&gt; AI 原声翻译&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_18&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_18&quot;&gt; SuperChat&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_19&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_19&quot;&gt; 播放课堂视频&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_20&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_20&quot;&gt; 发起投票&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_21&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_21&quot;&gt; 发布动态/评论支持&lt;code&gt;富文本编辑&lt;/code&gt;/&lt;code&gt;表情显示&lt;/code&gt;/&lt;code&gt;@用户&lt;/code&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_22&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_22&quot;&gt; 修改消息设置&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_23&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_23&quot;&gt; 修改聊天设置&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_24&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_24&quot;&gt; 展示折叠消息&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_25&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_25&quot;&gt; 查看用户图文&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_26&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_26&quot;&gt; 动态话题&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_27&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_27&quot;&gt; 直播分区&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_28&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_28&quot;&gt; 分享&lt;code&gt;视频&lt;/code&gt;/&lt;code&gt;番剧&lt;/code&gt;/&lt;code&gt;动态&lt;/code&gt;/&lt;code&gt;专栏&lt;/code&gt;/&lt;code&gt;直播&lt;/code&gt;至消息&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_29&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_29&quot;&gt; 创建/修改/删除关注分组&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_30&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_30&quot;&gt; 移除粉丝&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_31&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_31&quot;&gt; 直播弹幕发送表情&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_32&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_32&quot;&gt; 收藏夹排序&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_33&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_33&quot;&gt; 稍后再看 &lt;s&gt;&lt;code&gt;未看&lt;/code&gt;&lt;/s&gt; / &lt;code&gt;未看完&lt;/code&gt; / &lt;s&gt;&lt;code&gt;已看完&lt;/code&gt;&lt;/s&gt; 分类&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_34&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_34&quot;&gt; WebDAV 备份/恢复设置&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_35&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_35&quot;&gt; 保存评论/动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_36&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_36&quot;&gt; 高级弹幕 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_37&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_37&quot;&gt; 取消/置顶评论&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_38&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_38&quot;&gt; 记笔记&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_39&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_39&quot;&gt; 多账号支持 by &lt;a href=&quot;https://github.com/My-Responsitories&quot;&gt;@My-Responsitories&lt;/a&gt;&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_40&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_40&quot;&gt; 屏蔽带货动态/评论&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_41&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_41&quot;&gt; 互动视频&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_42&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_42&quot;&gt; 发评/动态反诈&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_43&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_43&quot;&gt; 高能进度条&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_44&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_44&quot;&gt; 滑动跳转预览视频缩略图&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_45&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_45&quot;&gt; Live Photo&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_46&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_46&quot;&gt; 复制/移动/排序收藏夹/稍后再看视频&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_47&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_47&quot;&gt; 超分辨率&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_48&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_48&quot;&gt; 合并弹幕&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_49&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_49&quot;&gt; 会员彩色弹幕&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_50&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_50&quot;&gt; 播放全部/继续播放/倒序播放&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_51&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_51&quot;&gt; Cookie登录&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_52&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_52&quot;&gt; 显示视频分段信息&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_53&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_53&quot;&gt; 调节字幕大小&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_54&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_54&quot;&gt; 调节全屏弹幕大小&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_55&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_55&quot;&gt; 收藏夹/稍后再看多选删除&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_56&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_56&quot;&gt; 搜索用户动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_57&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_57&quot;&gt; 直播弹幕&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_58&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_58&quot;&gt; 修改头像/用户名/签名/性别/生日&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_59&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_59&quot;&gt; 创建/编辑/删除收藏夹&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_60&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_60&quot;&gt; 评论楼中楼查看对话&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_61&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_61&quot;&gt; 评论楼中楼定位点击查看的评论&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_62&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_62&quot;&gt; 评论楼中楼按热度/时间排序&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_63&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_63&quot;&gt; 评论点踩&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_64&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_64&quot;&gt; 私信发图&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_65&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_65&quot;&gt; 投币动画&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_66&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_66&quot;&gt; 取消/追番，更新追番状态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_67&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_67&quot;&gt; 取消/订阅合集&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_68&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_68&quot;&gt; SponsorBlock&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_69&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_69&quot;&gt; 显示视频完整合集&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_70&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_70&quot;&gt; 三连动画&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_71&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_71&quot;&gt; 番剧三连&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_72&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_72&quot;&gt; 带图评论&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_73&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_73&quot;&gt; 视频TAG&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_74&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_74&quot;&gt; 筛选搜索&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_75&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_75&quot;&gt; 转发动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_76&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_76&quot;&gt; 合集图片&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_77&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_77&quot;&gt; 删除/置顶/撤回私信&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_78&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_78&quot;&gt; 举报用户/评论/视频/动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_79&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_79&quot;&gt; 删除/发布/置顶文本/图片动态&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_80&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_80&quot;&gt; 其他&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;opt&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_81&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_81&quot;&gt; 专栏界面&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_82&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_82&quot;&gt; 私信界面&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_83&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_83&quot;&gt; 收藏面板&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_84&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_84&quot;&gt; PIP&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_85&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_85&quot;&gt; 视频封面&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_86&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_86&quot;&gt; 回复界面&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_87&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_87&quot;&gt; 系统通知&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_88&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_88&quot;&gt; 评论显示&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_89&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_89&quot;&gt; 亮度调节&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_90&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_90&quot;&gt; 视频播放&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_91&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_91&quot;&gt; 视频staff&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_92&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_92&quot;&gt; 防止bottomsheet遮挡全屏视频&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_93&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_93&quot;&gt; 其他&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;fix&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_94&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_94&quot;&gt; 番剧分集点赞/投币/收藏&lt;/label&gt;&lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_95&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_95&quot;&gt; bugs&lt;/label&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;br /&gt; 
&lt;h2&gt;功能&lt;/h2&gt; 
&lt;ul class=&quot;task-list&quot;&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_96&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_96&quot;&gt; 推荐视频列表(app端)&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_97&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_97&quot;&gt; 最热视频列表&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_98&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_98&quot;&gt; 热门直播&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_99&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_99&quot;&gt; 番剧列表&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_100&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_100&quot;&gt; 屏蔽黑名单内用户视频&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_101&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_101&quot;&gt; 无痕模式（播放视为未登录）&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_102&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_102&quot;&gt; 游客模式（推荐视为未登录）&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_103&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_103&quot;&gt; 用户相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_104&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_104&quot;&gt; 粉丝、关注用户、拉黑用户查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_105&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_105&quot;&gt; 用户主页查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_106&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_106&quot;&gt; 关注/取关用户&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_107&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_107&quot;&gt; 离线缓存&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_108&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_108&quot;&gt; 稍后再看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_109&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_109&quot;&gt; 观看记录&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_110&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_110&quot;&gt; 我的收藏&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_111&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_111&quot;&gt; 站内私信&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_112&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_112&quot;&gt; 动态相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_113&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_113&quot;&gt; 全部、投稿、番剧分类查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_114&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_114&quot;&gt; 动态评论查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_115&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_115&quot;&gt; 动态评论回复功能&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_116&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_116&quot;&gt; 视频播放相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_117&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_117&quot;&gt; 双击快进/快退&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_118&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_118&quot;&gt; 双击播放/暂停&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_119&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_119&quot;&gt; 垂直方向调节亮度/音量&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_120&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_120&quot;&gt; 垂直方向上滑全屏、下滑退出全屏&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_121&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_121&quot;&gt; 水平方向手势快进/快退&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_122&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_122&quot;&gt; 全屏方向设置&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_123&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_123&quot;&gt; 倍速选择/长按2倍速&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_124&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_124&quot;&gt; 硬件加速（视机型而定）&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_125&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_125&quot;&gt; 画质选择（高清画质未解锁）&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_126&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_126&quot;&gt; 音质选择（视视频而定）&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_127&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_127&quot;&gt; 解码格式选择（视视频而定）&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_128&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_128&quot;&gt; 弹幕&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_129&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_129&quot;&gt; 字幕&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_130&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_130&quot;&gt; 记忆播放&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_131&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_131&quot;&gt; 视频比例：高度/宽度适应、填充、包含等&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_132&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_132&quot;&gt; 搜索相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_133&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_133&quot;&gt; 热搜&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_134&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_134&quot;&gt; 搜索历史&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_135&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_135&quot;&gt; 默认搜索词&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_136&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_136&quot;&gt; 投稿、番剧、直播间、用户搜索&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_137&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_137&quot;&gt; 视频搜索排序、按时长筛选&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_138&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_138&quot;&gt; 视频详情页相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_139&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_139&quot;&gt; 视频选集(分p)切换&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_140&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_140&quot;&gt; 点赞、投币、收藏/取消收藏&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_141&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_141&quot;&gt; 相关视频查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_142&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_142&quot;&gt; 评论用户身份标识&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_143&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_143&quot;&gt; 评论(排序)查看、二楼评论查看&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_144&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_144&quot;&gt; 主楼、二楼评论回复功能&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_145&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_145&quot;&gt; 评论点赞&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_146&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_146&quot;&gt; 评论笔记图片查看、保存&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_147&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_147&quot;&gt; 设置相关&lt;/label&gt;&lt;/p&gt; 
  &lt;ul class=&quot;task-list&quot;&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_148&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_148&quot;&gt; 画质、音质、解码方式预设&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_149&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_149&quot;&gt; 图片质量设定&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_150&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_150&quot;&gt; 主题模式：亮色/暗色/跟随系统&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_151&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_151&quot;&gt; 震动反馈(可选)&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_152&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_152&quot;&gt; 高帧率&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_153&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_153&quot;&gt; 自动全屏&lt;/label&gt;&lt;/li&gt; 
   &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_154&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_154&quot;&gt; 横屏适配&lt;/label&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li class=&quot;task-list-item&quot;&gt; &lt;p&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_155&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_155&quot;&gt; 等等&lt;/label&gt;&lt;/p&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;br /&gt; 
&lt;h2&gt;下载&lt;/h2&gt; 
&lt;p&gt;可以通过右侧release进行下载或拉取代码到本地进行编译&lt;/p&gt; 
&lt;br /&gt; 
&lt;h2&gt;声明&lt;/h2&gt; 
&lt;p&gt;此项目（PiliPlus）是个人为了兴趣而开发，仅用于学习和测试，请于下载后24小时内删除。 所用API皆从官方网站收集，不提供任何破解内容。 在此致敬原作者：&lt;a href=&quot;https://github.com/guozhigq/pilipala&quot;&gt;guozhigq/pilipala&lt;/a&gt; 在此致敬上游作者：&lt;a href=&quot;https://github.com/orz12/PiliPalaX&quot;&gt;orz12/PiliPalaX&lt;/a&gt; 本仓库做了更激进的修改，感谢原作者的开源精神。&lt;/p&gt; 
&lt;p&gt;感谢使用&lt;/p&gt; 
&lt;br /&gt; 
&lt;h2&gt;致谢&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/SocialSisterYi/bilibili-API-collect&quot;&gt;bilibili-API-collect&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zezo357/flutter_meedu_videoplayer&quot;&gt;flutter_meedu_videoplayer&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/media-kit/media-kit&quot;&gt;media-kit&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/dio&quot;&gt;dio&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;等等&lt;/li&gt; 
&lt;/ul&gt; 
&lt;br /&gt; 
&lt;br /&gt; 
&lt;br /&gt; 
&lt;h2&gt;Star History&lt;/h2&gt; 
&lt;a href=&quot;https://www.star-history.com/#bggRGjQaUbCoE/PiliPlus&amp;amp;Date&quot;&gt; 
 &lt;picture&gt; 
  &lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://api.star-history.com/svg?repos=bggRGjQaUbCoE/PiliPlus&amp;amp;type=Date&amp;amp;theme=dark&quot; /&gt; 
  &lt;source media=&quot;(prefers-color-scheme: light)&quot; srcset=&quot;https://api.star-history.com/svg?repos=bggRGjQaUbCoE/PiliPlus&amp;amp;type=Date&quot; /&gt; 
  &lt;img alt=&quot;Star History Chart&quot; src=&quot;https://api.star-history.com/svg?repos=bggRGjQaUbCoE/PiliPlus&amp;amp;type=Date&quot; /&gt; 
 &lt;/picture&gt; &lt;/a&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/8285df461dd8dd20fe029836bf4eb264761bfa7d8e794dc41f0e3115a33afc4f/bggRGjQaUbCoE/PiliPlus" medium="image" />
      
    </item>
    
    <item>
      <title>chen08209/FlClash</title>
      <link>https://github.com/chen08209/FlClash</link>
      <description>&lt;p&gt;A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free.&lt;/p&gt;&lt;hr&gt;&lt;div&gt; 
 &lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/README_zh_CN.md&quot;&gt;&lt;strong&gt;简体中文&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;FlClash&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/chen08209/FlClash/releases/&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/downloads/chen08209/FlClash/total?style=flat-square&amp;amp;logo=github&quot; alt=&quot;Downloads&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://github.com/chen08209/FlClash/releases/&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/release/chen08209/FlClash/all.svg?style=flat-square&quot; alt=&quot;Last Version&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/LICENSE&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/license/chen08209/FlClash?style=flat-square&quot; alt=&quot;License&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://t.me/FlClash&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Telegram-Channel-blue?style=flat-square&amp;amp;logo=telegram&quot; alt=&quot;Channel&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.&lt;/p&gt; 
&lt;p&gt;on Desktop:&lt;/p&gt; 
&lt;p style=&quot;text-align: center;&quot;&gt; &lt;img alt=&quot;desktop&quot; src=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/snapshots/desktop.gif&quot; /&gt; &lt;/p&gt; 
&lt;p&gt;on Mobile:&lt;/p&gt; 
&lt;p style=&quot;text-align: center;&quot;&gt; &lt;img alt=&quot;mobile&quot; src=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/snapshots/mobile.gif&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Features&lt;/h2&gt; 
&lt;p&gt;✈️ Multi-platform: Android, Windows, macOS and Linux&lt;/p&gt; 
&lt;p&gt;💻 Adaptive multiple screen sizes, Multiple color themes available&lt;/p&gt; 
&lt;p&gt;💡 Based on Material You Design, &lt;a href=&quot;https://github.com/getsurfboard/surfboard&quot;&gt;Surfboard&lt;/a&gt;-like UI&lt;/p&gt; 
&lt;p&gt;☁️ Supports data sync via WebDAV&lt;/p&gt; 
&lt;p&gt;✨ Support subscription link, Dark mode&lt;/p&gt; 
&lt;h2&gt;Use&lt;/h2&gt; 
&lt;h3&gt;Linux&lt;/h3&gt; 
&lt;p&gt;⚠️ Make sure to install the following dependencies before using them&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt; sudo apt-get install libayatana-appindicator3-dev
 sudo apt-get install libkeybinder-3.0-dev
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Android&lt;/h3&gt; 
&lt;p&gt;Support the following actions&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt; com.follow.clash.action.START
 
 com.follow.clash.action.STOP
 
 com.follow.clash.action.TOGGLE
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Download&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://chen08209.github.io/FlClash-fdroid-repo/repo?fingerprint=789D6D32668712EF7672F9E58DEEB15FBD6DCEEC5AE7A4371EA72F2AAE8A12FD&quot;&gt;&lt;img alt=&quot;Get it on F-Droid&quot; src=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/snapshots/get-it-on-fdroid.svg?sanitize=true&quot; width=&quot;200px&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/chen08209/FlClash/releases&quot;&gt;&lt;img alt=&quot;Get it on GitHub&quot; src=&quot;https://raw.githubusercontent.com/chen08209/FlClash/main/snapshots/get-it-on-github.svg?sanitize=true&quot; width=&quot;200px&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Build&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;Update submodules&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git submodule update --init --recursive
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Install &lt;code&gt;Flutter&lt;/code&gt; and &lt;code&gt;Golang&lt;/code&gt; environment&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Build Application&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt; &lt;p&gt;android&lt;/p&gt; 
    &lt;ol&gt; 
     &lt;li&gt; &lt;p&gt;Install &lt;code&gt;Android SDK&lt;/code&gt; , &lt;code&gt;Android NDK&lt;/code&gt;&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Set &lt;code&gt;ANDROID_NDK&lt;/code&gt; environment variables&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Run Build script&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart .\setup.dart android
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
    &lt;/ol&gt; &lt;/li&gt; 
   &lt;li&gt; &lt;p&gt;windows&lt;/p&gt; 
    &lt;ol&gt; 
     &lt;li&gt; &lt;p&gt;You need a windows client&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Install &lt;code&gt;Gcc&lt;/code&gt;，&lt;code&gt;Inno Setup&lt;/code&gt;&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Run build script&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart .\setup.dart windows --arch &amp;lt;arm64 | amd64&amp;gt;
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
    &lt;/ol&gt; &lt;/li&gt; 
   &lt;li&gt; &lt;p&gt;linux&lt;/p&gt; 
    &lt;ol&gt; 
     &lt;li&gt; &lt;p&gt;You need a linux client&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Run build script&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart .\setup.dart linux --arch &amp;lt;arm64 | amd64&amp;gt;
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
    &lt;/ol&gt; &lt;/li&gt; 
   &lt;li&gt; &lt;p&gt;macOS&lt;/p&gt; 
    &lt;ol&gt; 
     &lt;li&gt; &lt;p&gt;You need a macOS client&lt;/p&gt; &lt;/li&gt; 
     &lt;li&gt; &lt;p&gt;Run build script&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart .\setup.dart macos --arch &amp;lt;arm64 | amd64&amp;gt;
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
    &lt;/ol&gt; &lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;Star&lt;/h2&gt; 
&lt;p&gt;The easiest way to support developers is to click on the star (⭐) at the top of the page.&lt;/p&gt; 
&lt;p style=&quot;text-align: center;&quot;&gt; &lt;a href=&quot;https://api.star-history.com/svg?repos=chen08209/FlClash&amp;amp;Date&quot;&gt; &lt;img alt=&quot;start&quot; width=&quot;50%&quot; src=&quot;https://api.star-history.com/svg?repos=chen08209/FlClash&amp;amp;Date&quot; /&gt; &lt;/a&gt; &lt;/p&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/3bc98e95a52dba30e634698091b2187f4a76fe87ff7bbed5170d0c9a3b6f3665/chen08209/FlClash" medium="image" />
      
    </item>
    
    <item>
      <title>flutter/packages</title>
      <link>https://github.com/flutter/packages</link>
      <description>&lt;p&gt;A collection of useful packages maintained by the Flutter team&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;Flutter Packages&lt;/h1&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/flutter/packages/actions/workflows/release.yml&quot;&gt;&lt;img src=&quot;https://github.com/flutter/packages/actions/workflows/release.yml/badge.svg?sanitize=true&quot; alt=&quot;Release Status&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://flutter-dashboard.appspot.com/#/build?repo=packages&quot;&gt;&lt;img src=&quot;https://flutter-dashboard.appspot.com/api/public/build-status-badge?repo=packages&quot; alt=&quot;Flutter CI Status&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;This repo is a companion repo to the main &lt;a href=&quot;https://github.com/flutter/flutter&quot;&gt;flutter repo&lt;/a&gt;. It contains the source code for Flutter&#39;s first-party packages (i.e., packages developed by the core Flutter team). Check the &lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages&quot;&gt;&lt;code&gt;packages&lt;/code&gt;&lt;/a&gt; directory to see all packages.&lt;/p&gt; 
&lt;p&gt;These packages are also available on &lt;a href=&quot;https://pub.dev/flutter/packages&quot;&gt;pub&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Issues&lt;/h2&gt; 
&lt;p&gt;Please file any issues, bugs, or feature requests in the &lt;a href=&quot;https://github.com/flutter/flutter/issues/new/choose&quot;&gt;main flutter repo&lt;/a&gt;. Issues pertaining to this repository are &lt;a href=&quot;https://github.com/flutter/flutter/issues?q=is%3Aopen+is%3Aissue+label%3Apackage&quot;&gt;labeled &quot;package&quot;&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;If you wish to contribute a new package to the Flutter ecosystem, please see the documentation for &lt;a href=&quot;https://flutter.dev/to/develop-packages&quot;&gt;developing packages&lt;/a&gt;. You can store your package source code in any GitHub repository (the present repo is only intended for packages developed by the core Flutter team). Once your package is ready you can &lt;a href=&quot;https://flutter.dev/to/develop-packages#publish&quot;&gt;publish&lt;/a&gt; to the &lt;a href=&quot;https://pub.dev/&quot;&gt;pub repository&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;If you wish to contribute a change to any of the existing packages in this repo, please review our &lt;a href=&quot;https://github.com/flutter/packages/raw/main/CONTRIBUTING.md&quot;&gt;contribution guide&lt;/a&gt;, and send a &lt;a href=&quot;https://github.com/flutter/packages/pulls&quot;&gt;pull request&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Packages&lt;/h2&gt; 
&lt;p&gt;These are the packages hosted in this repository:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Package&lt;/th&gt; 
   &lt;th&gt;Pub&lt;/th&gt; 
   &lt;th&gt;Points&lt;/th&gt; 
   &lt;th&gt;Usage&lt;/th&gt; 
   &lt;th&gt;Issues&lt;/th&gt; 
   &lt;th&gt;Pull requests&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/animations/&quot;&gt;animations&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/animations&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/animations.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/animations/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/animations&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/animations/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/animations&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20animations&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20animations?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20animations&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20animations?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/camera/&quot;&gt;camera&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/camera&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/camera.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/camera/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/camera&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/camera/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/camera&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20camera&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20camera?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20camera&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20camera?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/cross_file/&quot;&gt;cross_file&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cross_file&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/cross_file.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cross_file/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/cross_file&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cross_file/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/cross_file&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20cross_file&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20cross_file?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20cross_file&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20cross_file?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/cupertino_icons/&quot;&gt;cupertino_icons&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_icons&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/cupertino_icons.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_icons/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/cupertino_icons&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_icons/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/cupertino_icons&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20cupertino_icons&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20cupertino_icons?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20cupertino_icons&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20cupertino_icons?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/cupertino_ui/&quot;&gt;cupertino_ui&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/cupertino_ui.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_ui/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/cupertino_ui&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/cupertino_ui/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/cupertino_ui&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20cupertino_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20cupertino_ui?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20cupertino_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20cupertino_ui?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/espresso/&quot;&gt;espresso&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/espresso&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/espresso.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/espresso/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/espresso&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/espresso/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/espresso&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20espresso&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20espresso?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20espresso&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20espresso?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/extension_google_sign_in_as_googleapis_auth/&quot;&gt;extension_google_sign_in_as_googleapis_auth&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/extension_google_sign_in_as_googleapis_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/extension_google_sign_in_as_googleapis_auth.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/extension_google_sign_in_as_googleapis_auth/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/extension_google_sign_in_as_googleapis_auth&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/extension_google_sign_in_as_googleapis_auth/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/extension_google_sign_in_as_googleapis_auth&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20extension_google_sign_in_as_googleapis_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20extension_google_sign_in_as_googleapis_auth?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20extension_google_sign_in_as_googleapis_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20extension_google_sign_in_as_googleapis_auth?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/file_selector/&quot;&gt;file_selector&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/file_selector&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/file_selector.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/file_selector/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/file_selector&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/file_selector/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/file_selector&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20file_selector&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20file_selector?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20file_selector&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20file_selector?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/flutter_lints/&quot;&gt;flutter_lints&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_lints&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/flutter_lints.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_lints/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/flutter_lints&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_lints/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/flutter_lints&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20flutter_lints&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_lints?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20flutter_lints&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_lints?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/flutter_plugin_android_lifecycle/&quot;&gt;flutter_plugin_android_lifecycle&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_plugin_android_lifecycle&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/flutter_plugin_android_lifecycle.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_plugin_android_lifecycle/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/flutter_plugin_android_lifecycle&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_plugin_android_lifecycle/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/flutter_plugin_android_lifecycle&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20flutter_plugin_android_lifecycle&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_plugin_android_lifecycle?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20flutter_plugin_android_lifecycle&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_plugin_android_lifecycle?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/flutter_svg/&quot;&gt;flutter_svg&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/flutter_svg.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/flutter_svg&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/flutter_svg&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20flutter_svg&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_svg?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20flutter_svg&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_svg?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/flutter_svg_test/&quot;&gt;flutter_svg_test&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg_test&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/flutter_svg_test.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg_test/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/flutter_svg_test&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_svg_test/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/flutter_svg_test&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20flutter_svg_test&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_svg_test?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20flutter_svg_test&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_svg_test?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/flutter_template_images/&quot;&gt;flutter_template_images&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_template_images&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/flutter_template_images.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_template_images/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/flutter_template_images&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_template_images/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/flutter_template_images&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20flutter_template_images&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_template_images?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20flutter_template_images&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_template_images?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/go_router/&quot;&gt;go_router&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/go_router.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/go_router&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/go_router&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20go_router&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20go_router?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20go_router&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20go_router?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/go_router_builder/&quot;&gt;go_router_builder&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router_builder&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/go_router_builder.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router_builder/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/go_router_builder&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/go_router_builder/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/go_router_builder&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20go_router_builder&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20go_router_builder?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20go_router_builder&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20go_router_builder?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/google_adsense/&quot;&gt;google_adsense&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_adsense&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/google_adsense.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_adsense/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/google_adsense&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_adsense/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/google_adsense&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20google_adsense&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_adsense?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20google_adsense&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_adsense?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/google_fonts/&quot;&gt;google_fonts&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_fonts&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/google_fonts.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_fonts/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/google_fonts&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_fonts/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/google_fonts&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20google_fonts&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_fonts?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20google_fonts&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_fonts?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/google_maps_flutter/&quot;&gt;google_maps_flutter&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_maps_flutter&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/google_maps_flutter.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_maps_flutter/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/google_maps_flutter&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_maps_flutter/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/google_maps_flutter&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20maps&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20maps?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20google_maps_flutter&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_maps_flutter?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/google_sign_in/&quot;&gt;google_sign_in&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_sign_in&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/google_sign_in.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_sign_in/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/google_sign_in&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_sign_in/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/google_sign_in&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20google_sign_in&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_sign_in?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20google_sign_in&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_sign_in?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/image_picker/&quot;&gt;image_picker&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/image_picker&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/image_picker.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/image_picker/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/image_picker&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/image_picker/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/image_picker&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20image_picker&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20image_picker?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20image_picker&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20image_picker?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/interactive_media_ads/&quot;&gt;interactive_media_ads&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/interactive_media_ads&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/interactive_media_ads.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/interactive_media_ads/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/interactive_media_ads&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/interactive_media_ads/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/interactive_media_ads&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20interactive_media_ads&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20interactive_media_ads?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20interactive_media_ads&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20interactive_media_ads?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/in_app_purchase/&quot;&gt;in_app_purchase&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/in_app_purchase&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/in_app_purchase.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/in_app_purchase/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/in_app_purchase&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/in_app_purchase/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/in_app_purchase&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20in_app_purchase&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20in_app_purchase?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20in_app_purchase&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20in_app_purchase?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/local_auth/&quot;&gt;local_auth&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/local_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/local_auth.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/local_auth/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/local_auth&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/local_auth/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/local_auth&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20local_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20local_auth?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20local_auth&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20local_auth?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/material_ui/&quot;&gt;material_ui&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/material_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/material_ui.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/material_ui/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/material_ui&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/material_ui/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/material_ui&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20material_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20material_ui?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20material_ui&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20material_ui?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/metrics_center/&quot;&gt;metrics_center&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/metrics_center&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/metrics_center.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/metrics_center/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/metrics_center&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/metrics_center/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/metrics_center&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20metrics_center&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20metrics_center?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20metrics_center&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20metrics_center?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/multicast_dns/&quot;&gt;multicast_dns&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/multicast_dns&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/multicast_dns.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/multicast_dns/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/multicast_dns&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/multicast_dns/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/multicast_dns&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20multicast_dns&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20multicast_dns?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20multicast_dns&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20multicast_dns?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/path_parsing/&quot;&gt;path_parsing&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_parsing&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/path_parsing.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_parsing/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/path_parsing&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_parsing/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/path_parsing&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20path_parsing&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20path_parsing?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20path_parsing&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20path_parsing?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/path_provider/&quot;&gt;path_provider&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_provider&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/path_provider.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_provider/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/path_provider&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/path_provider/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/path_provider&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20path_provider&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20path_provider?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20path_provider&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20path_provider?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/pigeon/&quot;&gt;pigeon&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pigeon&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/pigeon.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pigeon/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/pigeon&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pigeon/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/pigeon&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20pigeon&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20pigeon?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20pigeon&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20pigeon?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/pointer_interceptor/&quot;&gt;pointer_interceptor&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pointer_interceptor&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/pointer_interceptor.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pointer_interceptor/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/pointer_interceptor&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/pointer_interceptor/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/pointer_interceptor&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20pointer_interceptor&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20pointer_interceptor?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20pointer_interceptor&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20pointer_interceptor?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/plugin_platform_interface/&quot;&gt;plugin_platform_interface&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/plugin_platform_interface&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/plugin_platform_interface.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/plugin_platform_interface/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/plugin_platform_interface&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/plugin_platform_interface/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/plugin_platform_interface&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20plugin_platform_interface&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20plugin_platform_interface?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20plugin_platform_interface&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20plugin_platform_interface?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/quick_actions/&quot;&gt;quick_actions&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/quick_actions&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/quick_actions.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/quick_actions/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/quick_actions&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/quick_actions/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/quick_actions&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20quick_actions&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20quick_actions?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20quick_actions&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20quick_actions?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/google_identity_services_web/&quot;&gt;google_identity_services_web&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_identity_services_web&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/google_identity_services_web.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_identity_services_web/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/google_identity_services_web&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/google_identity_services_web/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/google_identity_services_web&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20google_identity_services_web&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_identity_services_web?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20google_identity_services_web&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_identity_services_web?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/mustache_template/&quot;&gt;mustache_template&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/mustache_template&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/mustache_template.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/mustache_template/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/mustache_template&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/mustache_template/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/mustache_template&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20mustache_template&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20mustache_template?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20mustache_template&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20mustache_template?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/rfw/&quot;&gt;rfw&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/rfw&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/rfw.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/rfw/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/rfw&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/rfw/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/rfw&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20rfw&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20rfw?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20rfw&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20rfw?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/shared_preferences/&quot;&gt;shared_preferences&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/shared_preferences&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/shared_preferences.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/shared_preferences/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/shared_preferences&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/shared_preferences/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/shared_preferences&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20shared_preferences&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20shared_preferences?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20shared_preferences&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20shared_preferences?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/standard_message_codec/&quot;&gt;standard_message_codec&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/standard_message_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/standard_message_codec.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/standard_message_codec/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/standard_message_codec&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/standard_message_codec/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/standard_message_codec&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20standard_message_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20standard_message_codec?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20standard_message_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20standard_message_codec?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/two_dimensional_scrollables/&quot;&gt;two_dimensional_scrollables&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/two_dimensional_scrollables&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/two_dimensional_scrollables.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/two_dimensional_scrollables/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/two_dimensional_scrollables&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/two_dimensional_scrollables/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/two_dimensional_scrollables&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20two_dimensional_scrollables&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20two_dimensional_scrollables?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20two_dimensional_scrollables&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20two_dimensional_scrollables?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/url_launcher/&quot;&gt;url_launcher&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/url_launcher&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/url_launcher.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/url_launcher/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/url_launcher&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/url_launcher/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/url_launcher&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20url_launcher&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20url_launcher?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20url_launcher&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20url_launcher?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/vector_graphics/&quot;&gt;vector_graphics&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/vector_graphics.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/vector_graphics&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/vector_graphics&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20vector_graphics&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20vector_graphics?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20vector_graphics&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20vector_graphics?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/vector_graphics_codec/&quot;&gt;vector_graphics_codec&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/vector_graphics_codec.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_codec/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/vector_graphics_codec&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_codec/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/vector_graphics_codec&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20vector_graphics_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20vector_graphics_codec?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20vector_graphics_codec&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20vector_graphics_codec?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/vector_graphics_compiler/&quot;&gt;vector_graphics_compiler&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_compiler&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/vector_graphics_compiler.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_compiler/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/vector_graphics_compiler&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/vector_graphics_compiler/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/vector_graphics_compiler&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20vector_graphics_compiler&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20vector_graphics_compiler?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20vector_graphics_compiler&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20vector_graphics_compiler?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/video_player/&quot;&gt;video_player&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/video_player&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/video_player.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/video_player/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/video_player&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/video_player/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/video_player&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20video_player&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20video_player?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20video_player&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20video_player?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/web_benchmarks/&quot;&gt;web_benchmarks&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/web_benchmarks&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/web_benchmarks.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/web_benchmarks/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/web_benchmarks&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/web_benchmarks/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/web_benchmarks&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20web_benchmarks&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20web_benchmarks?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20web_benchmarks&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20web_benchmarks?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/webview_flutter/&quot;&gt;webview_flutter&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/webview_flutter&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/webview_flutter.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/webview_flutter/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/webview_flutter&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/webview_flutter/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/webview_flutter&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20webview&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20webview?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20webview_flutter&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20webview_flutter?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://raw.githubusercontent.com/flutter/packages/main/packages/xdg_directories/&quot;&gt;xdg_directories&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/xdg_directories&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/v/xdg_directories.svg?sanitize=true&quot; alt=&quot;pub package&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/xdg_directories/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/points/xdg_directories&quot; alt=&quot;pub points&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://pub.dev/packages/xdg_directories/score&quot;&gt;&lt;img src=&quot;https://img.shields.io/pub/dm/xdg_directories&quot; alt=&quot;downloads&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/flutter/labels/p%3A%20xdg_directories&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues/flutter/flutter/p%3A%20xdg_directories?label=&quot; alt=&quot;GitHub issues by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/flutter/packages/labels/p%3A%20xdg_directories&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20xdg_directories?label=&quot; alt=&quot;GitHub pull requests by-label&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/34f8bc021975a889b0cd036f0376cc1e92d4469b1331d6437aa48b644fc80150/flutter/packages" medium="image" />
      
    </item>
    
    <item>
      <title>flutter/website</title>
      <link>https://github.com/flutter/website</link>
      <description>&lt;p&gt;Flutter documentation web site&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;a href=&quot;https://docs.flutter.dev&quot;&gt;&lt;img src=&quot;https://github.com/dart-lang/site-shared/raw/main/src/_assets/image/flutter/icon/64.png?raw=1&quot; alt=&quot;Flutter logo&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h1&gt;&lt;a href=&quot;https://docs.flutter.dev/&quot;&gt;Flutter&lt;/a&gt; documentation website&lt;/h1&gt; 
&lt;p&gt;The &lt;a href=&quot;https://docs.flutter.dev/&quot;&gt;documentation site&lt;/a&gt; for the &lt;a href=&quot;https://flutter.dev&quot;&gt;Flutter framework&lt;/a&gt;, built with &lt;a href=&quot;https://jaspr.site&quot;&gt;Jaspr&lt;/a&gt; and hosted on &lt;a href=&quot;https://firebase.google.com/&quot;&gt;Firebase&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Issues, bugs, and requests&lt;/h2&gt; 
&lt;p&gt;We welcome contributions and feedback on our website. Please file a request in our &lt;a href=&quot;https://github.com/flutter/website/issues/new/choose&quot;&gt;issue tracker&lt;/a&gt; or create a &lt;a href=&quot;https://github.com/flutter/website/pulls&quot;&gt;pull request&lt;/a&gt;. For simple changes (such as tweaking some text), it&#39;s easiest to make changes using the GitHub UI.&lt;/p&gt; 
&lt;p&gt;If you have an issue with the API docs on &lt;a href=&quot;https://api.flutter.dev&quot;&gt;api.flutter.dev&lt;/a&gt;, please file them on the &lt;a href=&quot;https://github.com/flutter/flutter/issues&quot;&gt;&lt;code&gt;flutter/flutter&lt;/code&gt;&lt;/a&gt; repo, not on this (&lt;code&gt;flutter/website&lt;/code&gt;) repo. The API docs are embedded in Flutter&#39;s source code, so the engineering team handles them.&lt;/p&gt; 
&lt;h2&gt;Before you submit a PR&lt;/h2&gt; 
&lt;p&gt;We love it when the community gets involved in improving our docs! Here are a few things to keep in mind before you submit a PR:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;When triaging issues, we sometimes label an issue with the tag &lt;strong&gt;PRs welcome&lt;/strong&gt;. However, we welcome PRs on other issues as well— it doesn&#39;t have to be tagged with that label.&lt;/li&gt; 
 &lt;li&gt;Please don&#39;t run our docs through Grammarly (or a similar tool) and submit those changes as a PR.&lt;/li&gt; 
 &lt;li&gt;We follow the &lt;a href=&quot;https://developers.google.com/style&quot;&gt;Google Developer Documentation Style Guidelines&lt;/a&gt;— for example, avoid &quot;i.e.&quot; or &quot;e.g.&quot;, avoid writing in the first person, and avoid the future tense. You can start with the &lt;a href=&quot;https://developers.google.com/style/highlights&quot;&gt;style guide highlights&lt;/a&gt; or the &lt;a href=&quot;https://developers.google.com/style/word-list&quot;&gt;word list&lt;/a&gt;, or use the search bar at the top of every style guide page.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;We truly thank you for your willingness and helpfulness in keeping the website docs up to date!&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;To update this site, fork the repo, make your changes, and generate a pull request. For small, contained changes (such as style and typo fixes), you probably don&#39;t need to build this site. Often you can make changes using the GitHub UI. If needed, we can stage the changes automatically in your pull request.&lt;/p&gt; 
&lt;p&gt;If your change involves code samples, adds/removes pages, or affects navigation, please build and test your work before submitting.&lt;/p&gt; 
&lt;p&gt;If you want or need to build the site, follow the steps below.&lt;/p&gt; 
&lt;h2&gt;Build the site&lt;/h2&gt; 
&lt;p&gt;For changes beyond simple text and CSS tweaks, we recommend running the site locally to enable an edit-refresh cycle.&lt;/p&gt; 
&lt;h3&gt;Get the prerequisites&lt;/h3&gt; 
&lt;p&gt;To build and develop the site, you&#39;ll need to install the latest stable release of Flutter, which includes Dart.&lt;/p&gt; 
&lt;p&gt;If you don&#39;t have Flutter or need to update, follow the instructions at &lt;a href=&quot;https://docs.flutter.dev/get-started&quot;&gt;Install Flutter&lt;/a&gt; or &lt;a href=&quot;https://docs.flutter.dev/install/upgrade&quot;&gt;Upgrading Flutter&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;If you already have Flutter installed, verify it&#39;s in your path and is the latest stable version:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-console&quot;&gt;flutter --version
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Clone this repo&lt;/h3&gt; 
&lt;p&gt;If you&#39;re not a member of the Flutter organization, we recommend you &lt;a href=&quot;https://docs.github.com/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo&quot;&gt;create a fork&lt;/a&gt; of this repo under your own GitHub account and then submit a pull request from that fork.&lt;/p&gt; 
&lt;p&gt;Once you have a fork (or you&#39;re a Flutter org member), clone the repository with &lt;code&gt;git clone&lt;/code&gt;:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/flutter/website.git
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;Set up your local environment and serve changes&lt;/h2&gt; 
&lt;p&gt;Before you continue setting up the site infrastructure, verify that the correct version of Flutter is set up and available by following the instructions in &lt;a href=&quot;https://raw.githubusercontent.com/flutter/website/main/#get-the-prerequisites&quot;&gt;Get the prerequisites&lt;/a&gt;.&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;&lt;em&gt;Optional:&lt;/em&gt; After cloning the repo, create a branch for your changes:&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-console&quot;&gt;git checkout -b &amp;lt;BRANCH_NAME&amp;gt;
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;From the root directory of the repository, fetch the site&#39;s Dart dependencies.&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-console&quot;&gt;dart pub get
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;From the root directory, run the &lt;code&gt;dash_site&lt;/code&gt; tool to validate your setup and learn about the available commands.&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-terminal&quot;&gt;dart run dash_site --help
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;From the root directory, serve the site locally.&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-terminal&quot;&gt;dart run dash_site serve
&lt;/code&gt;&lt;/pre&gt; &lt;p&gt;This command generates and serves the site on a local port that&#39;s printed to your terminal.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;View your changes in the browser by navigating to &lt;a href=&quot;http://localhost:8080&quot;&gt;http://localhost:8080&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Note the port might be different if &lt;code&gt;8080&lt;/code&gt; is taken.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Make your changes to the local repo.&lt;/p&gt; &lt;p&gt;To view your changes in the browser, you&#39;ll need to refresh the page. The site should automatically rebuild on most changes, but if something doesn&#39;t update, exit the process and rerun the command.&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Commit your changes to the branch and submit your PR.&lt;/p&gt; &lt;p&gt;If your change is large, or you&#39;d like to test it, consider &lt;a href=&quot;https://raw.githubusercontent.com/flutter/website/main/#validate-your-changes&quot;&gt;validating your changes&lt;/a&gt;.&lt;/p&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-tip&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-light-bulb mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Tip&lt;/p&gt;
 &lt;p&gt;To find additional commands that you can run, run &lt;code&gt;dart run dash_site --help&lt;/code&gt; from the repository&#39;s root directory.&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Validate your changes&lt;/h2&gt; 
&lt;h3&gt;Check documentation and example code&lt;/h3&gt; 
&lt;p&gt;If you&#39;ve made changes to the code in the &lt;code&gt;/examples&lt;/code&gt;, &lt;code&gt;/sites&lt;/code&gt;, or &lt;code&gt;/tool&lt;/code&gt; directories, commit your work, and then run the following command to verify that it is up to date and matches site standards.&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-terminal&quot;&gt;dart run dash_site check-all
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;If this script reports any errors or warnings, address them and rerun the command. If you have questions, leave a comment on your issue or pull request, and we&#39;ll do our best to help. You can also chat with us on the &lt;code&gt;#hackers-devrel&lt;/code&gt; channel on the &lt;a href=&quot;https://github.com/flutter/flutter/raw/main/docs/contributing/Chat.md&quot;&gt;Flutter contributors Discord&lt;/a&gt;!&lt;/p&gt; 
&lt;h3&gt;Check links&lt;/h3&gt; 
&lt;p&gt;If you&#39;ve made changes to the content and want to check that all internal links and Markdown link references are valid, build the site locally and run the following commands.&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;Build the site locally.&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart run dash_site build
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Verify all Markdown link references are resolved.&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart run dash_site check-link-references
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;Verify that all internal links are valid.&lt;/p&gt; 
  &lt;div class=&quot;markdown-alert markdown-alert-note&quot;&gt;
   &lt;p class=&quot;markdown-alert-title&quot;&gt;
    &lt;svg class=&quot;octicon octicon-info mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
     &lt;path d=&quot;M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z&quot;&gt;&lt;/path&gt;
    &lt;/svg&gt;Note&lt;/p&gt;
   &lt;p&gt;This command relies on the &lt;code&gt;firebase&lt;/code&gt; CLI tool being on your PATH. If you haven&#39;t installed it or updated it in a while, follow &lt;a href=&quot;https://firebase.google.com/docs/cli#setup_update_cli&quot;&gt;Set up or update the Firebase CLI&lt;/a&gt;.&lt;/p&gt; 
  &lt;/div&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart run dash_site check-links
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;If either command reports any errors or warnings, address them, rebuild the site, and rerun the command.&lt;/p&gt; 
&lt;h3&gt;Refresh code excerpts&lt;/h3&gt; 
&lt;p&gt;A build that fails with the error &lt;code&gt;Error: Some code excerpts need to be updated!&lt;/code&gt; means that one or more code excerpts in the site Markdown files aren&#39;t identical to the code regions declared in the corresponding &lt;code&gt;.dart&lt;/code&gt; files.&lt;/p&gt; 
&lt;p&gt;The &lt;code&gt;.dart&lt;/code&gt; files are the source of truth for code snippets, and the preceding &lt;code&gt;&amp;lt;?code-excerpt&amp;gt;&lt;/code&gt; instructions in Markdown files specify how the snippets are copied from the &lt;code&gt;.dart&lt;/code&gt; files.&lt;/p&gt; 
&lt;p&gt;To resolve this error and update the Markdown snippets to match, from the root of the &lt;code&gt;website&lt;/code&gt; directory, run &lt;code&gt;dart run dash_site refresh-excerpts&lt;/code&gt;.&lt;/p&gt; 
&lt;p&gt;To learn more about creating, editing, and using code excerpts, check out the &lt;a href=&quot;https://github.com/flutter/website/tree/main/packages/excerpter#readme&quot;&gt;excerpt updater package documentation&lt;/a&gt;.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/41847366/8e2faf9c-66c7-4db6-a3e8-ef01b459ebc0" medium="image" />
      
    </item>
    
    <item>
      <title>Lingyan000/fluxdo</title>
      <link>https://github.com/Lingyan000/fluxdo</link>
      <description>&lt;p&gt;一个 Linux.do 第三方客户端&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;FluxDO&lt;/h1&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;一个真诚、友善、团结、专业的 &lt;a href=&quot;https://linux.do/&quot;&gt;Linux.do&lt;/a&gt; 第三方客户端&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;p&gt;&lt;a href=&quot;https://t.me/ldxfd&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Telegram-Channel-26A5E4?logo=telegram&amp;amp;logoColor=white&quot; alt=&quot;Telegram Channel&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://t.me/fluxdo_chat&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/Telegram-Group-26A5E4?logo=telegram&amp;amp;logoColor=white&quot; alt=&quot;Telegram Group&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;FluxDO 是为 &lt;a href=&quot;https://linux.do/&quot;&gt;Linux.do&lt;/a&gt; 社区打造的现代化移动和桌面客户端，基于 Flutter 开发，致力于为用户提供流畅、优雅的论坛浏览体验。&lt;/p&gt; 
&lt;h2&gt;下载&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/lingyan000/fluxdo/releases&quot;&gt;&lt;img alt=&quot;Get it on GitHub&quot; src=&quot;https://img.shields.io/github/v/release/lingyan000/fluxdo?style=for-the-badge&amp;amp;logo=github&amp;amp;label=GitHub%20Releases&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;altstore://source?url=https://lingyan000.github.io/fluxdo/source.json&quot;&gt;&lt;img alt=&quot;Add to AltStore&quot; src=&quot;https://img.shields.io/badge/AltStore-Add_Source-0c6bff?style=for-the-badge&amp;amp;logo=apple&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h3&gt;AltStore 安装&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt;在 iOS 设备上安装 &lt;a href=&quot;https://altstore.io/&quot;&gt;AltStore&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;打开 AltStore，进入 &lt;strong&gt;Browse&lt;/strong&gt; → &lt;strong&gt;Sources&lt;/strong&gt; → 点击左上角 &lt;strong&gt;+&lt;/strong&gt;&lt;/li&gt; 
 &lt;li&gt;粘贴源地址：&lt;pre&gt;&lt;code&gt;https://lingyan000.github.io/fluxdo/source.json
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt;在源中找到 FluxDO 并安装&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/screenshots/preview.png&quot; alt=&quot;FluxDO 预览&quot; /&gt;&lt;/p&gt; 
&lt;h2&gt;特性&lt;/h2&gt; 
&lt;h3&gt;核心功能&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;跨平台支持&lt;/strong&gt;：Android、iOS、Windows、macOS、Linux&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Material Design 3&lt;/strong&gt;：现代化 UI 设计，支持动态取色&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;深色模式&lt;/strong&gt;：自动适配系统主题&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;完整论坛功能&lt;/strong&gt;：浏览话题、发帖回复、搜索、通知&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;内容管理&lt;/strong&gt;：书签、浏览历史、关注列表&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;徽章系统&lt;/strong&gt;：查看和展示社区徽章&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Markdown 编辑器&lt;/strong&gt;：支持富文本编辑和预览&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;图片支持&lt;/strong&gt;：图片上传、查看、保存&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;投票功能&lt;/strong&gt;：参与社区投票&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;技术特性&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;安全连接&lt;/strong&gt;：集成 Rust 实现的 DOH (DNS over HTTPS) 代理&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;性能优化&lt;/strong&gt;：图片缓存、懒加载、代码高亮&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;实时通知&lt;/strong&gt;：MessageBus 实时消息推送&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;智能渲染&lt;/strong&gt;：HTML 内容分块渲染，流畅滚动&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;快速开始&lt;/h2&gt; 
&lt;h3&gt;前置要求&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Flutter SDK ^3.10.4&lt;/li&gt; 
 &lt;li&gt;Rust 工具链（用于编译 DOH 代理）&lt;/li&gt; 
 &lt;li&gt;Android Studio / Xcode（移动端开发）&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;安装步骤&lt;/h3&gt; 
&lt;ol&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;克隆仓库&lt;/strong&gt;&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/Lingyan000/fluxdo.git
cd fluxdo
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;初始化工作区&lt;/strong&gt;&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;melos bootstrap
&lt;/code&gt;&lt;/pre&gt; &lt;p&gt;如果没有安装全局 &lt;code&gt;melos&lt;/code&gt;，可改用 &lt;code&gt;dart run melos bootstrap&lt;/code&gt;。 这一步只负责 workspace 依赖和链接初始化。&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;安装 &lt;code&gt;just&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt; 
  &lt;ul&gt; 
   &lt;li&gt;Windows：&lt;code&gt;winget install --id Casey.Just --exact&lt;/code&gt;&lt;/li&gt; 
   &lt;li&gt;Windows：&lt;code&gt;scoop install just&lt;/code&gt;&lt;/li&gt; 
   &lt;li&gt;Windows：&lt;code&gt;choco install just&lt;/code&gt;&lt;/li&gt; 
   &lt;li&gt;通用：&lt;code&gt;cargo install just&lt;/code&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;同步项目状态&lt;/strong&gt;&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;just sync
&lt;/code&gt;&lt;/pre&gt; &lt;p&gt;这一步会统一完成 &lt;code&gt;flutter pub get&lt;/code&gt;、l10n 生成和代理证书资源同步。&lt;/p&gt; &lt;/li&gt; 
 &lt;li&gt; &lt;p&gt;&lt;strong&gt;运行应用&lt;/strong&gt;&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;just run -- -d windows
just run -- -d macos
just run -- --dart-define=cronetHttpNoPlay=true
&lt;/code&gt;&lt;/pre&gt; &lt;p&gt;如果你不想安装 &lt;code&gt;just&lt;/code&gt;，也可以直接调用 Dart 入口：&lt;/p&gt; &lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;dart run tool/project_prep.dart app
dart run tool/flutterw.dart run -d windows
&lt;/code&gt;&lt;/pre&gt; &lt;/li&gt; 
&lt;/ol&gt; 
&lt;h2&gt;开发&lt;/h2&gt; 
&lt;p&gt;开发相关的工程化细节已经拆到独立文档，根 README 只保留最短路径。&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/development.md&quot;&gt;开发环境与日常命令&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/release.md&quot;&gt;发版与 iOS IPA&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/flatpak.md&quot;&gt;Flatpak 打包说明&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;项目结构&lt;/h2&gt; 
&lt;pre&gt;&lt;code&gt;fluxdo/
├── lib/
│   ├── config/              # 应用配置
│   ├── models/              # 数据模型（话题、用户、通知等）
│   ├── modules/             # 功能模块
│   ├── pages/               # 页面组件
│   ├── providers/           # Riverpod 状态管理
│   ├── services/            # 业务逻辑服务
│   │   ├── network/         # 网络层（DOH、代理、适配器）
│   │   └── ...
│   ├── utils/               # 工具类
│   ├── widgets/             # 可复用组件
│   └── main.dart
├── core/
│   └── doh_proxy/           # Rust DOH 代理实现
├── packages/                # 本地依赖包
├── scripts/
│   └── ci/                  # CI / 打包链路内部脚本
└── pubspec.yaml
&lt;/code&gt;&lt;/pre&gt; 
&lt;h2&gt;技术栈&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;前端框架&lt;/strong&gt;：Flutter&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;状态管理&lt;/strong&gt;：Riverpod&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;网络请求&lt;/strong&gt;：Dio + Native Dio Adapter&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;HTML 渲染&lt;/strong&gt;：flutter_widget_from_html&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;代码高亮&lt;/strong&gt;：re_highlight + google_fonts (FiraCode)&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;图片处理&lt;/strong&gt;：extended_image + cached_network_image&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;本地存储&lt;/strong&gt;：shared_preferences + flutter_secure_storage&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;网络代理&lt;/strong&gt;：Rust (DOH + ECH)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;DOH 代理功能&lt;/h2&gt; 
&lt;p&gt;FluxDO 集成了基于 Rust 的 DOH (DNS over HTTPS) 代理，提供：&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;DNS 加密查询&lt;/strong&gt;：防止 DNS 污染和劫持&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;多服务器支持&lt;/strong&gt;：DNSPod、腾讯 DNS、阿里 DNS、Cloudflare、Canadian Shield、Google、Quad9&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;ECH 支持&lt;/strong&gt;：加密 TLS 握手中的 SNI 字段（用户无感知）&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;跨平台实现&lt;/strong&gt;： 
  &lt;ul&gt; 
   &lt;li&gt;Android/iOS：FFI 调用&lt;/li&gt; 
   &lt;li&gt;Windows/macOS/Linux：独立进程&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;详细文档请参考 &lt;a href=&quot;https://github.com/Lingyan000/fluxdo_doh&quot;&gt;core/doh_proxy/README.md&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;关于 &lt;a href=&quot;http://Linux.do&quot;&gt;Linux.do&lt;/a&gt;&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://linux.do/&quot;&gt;Linux.do&lt;/a&gt; 是一个真诚、友善、团结、专业的技术社区，汇聚了众多热爱技术、乐于分享的开发者。FluxDO 作为第三方客户端，致力于为社区成员提供更好的移动和桌面端体验。&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;注意&lt;/strong&gt;：本项目为非官方客户端，与 &lt;a href=&quot;http://Linux.do&quot;&gt;Linux.do&lt;/a&gt; 官方无直接关联。&lt;/p&gt; 
&lt;h2&gt;问题反馈&lt;/h2&gt; 
&lt;p&gt;如果您在使用过程中遇到问题或有建议，欢迎：&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;在 &lt;a href=&quot;https://linux.do/&quot;&gt;Linux.do&lt;/a&gt; 论坛发帖讨论&lt;/li&gt; 
 &lt;li&gt;提交 &lt;a href=&quot;https://github.com/Lingyan000/fluxdo/issues&quot;&gt;Issue&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;开源协议&lt;/h2&gt; 
&lt;p&gt;本项目基于 &lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/LICENSE&quot;&gt;GPL-3.0&lt;/a&gt; 协议开源。&lt;/p&gt; 
&lt;h2&gt;致谢&lt;/h2&gt; 
&lt;p&gt;感谢 &lt;a href=&quot;https://linux.do/&quot;&gt;Linux.do&lt;/a&gt; 社区的所有成员，是你们的真诚、友善、团结、专业让这个社区充满活力。&lt;/p&gt; 
&lt;h2&gt;相关文档&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/development.md&quot;&gt;开发环境与日常命令&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/flatpak.md&quot;&gt;Flatpak 打包说明&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Lingyan000/fluxdo/main/docs/release.md&quot;&gt;发版与 iOS IPA&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/a1817880f16e4461d975f3e8bbc9f28eae01e46794e8ae661b09acca1bb30a91/Lingyan000/fluxdo" medium="image" />
      
    </item>
    
    <item>
      <title>localsend/localsend</title>
      <link>https://github.com/localsend/localsend</link>
      <description>&lt;p&gt;An open-source cross-platform alternative to AirDrop&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;LocalSend&lt;/h1&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/localsend/localsend/actions/workflows/ci.yml&quot;&gt;&lt;img src=&quot;https://github.com/localsend/localsend/actions/workflows/ci.yml/badge.svg?sanitize=true&quot; alt=&quot;CI status&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://hosted.weblate.org/engage/localsend/&quot;&gt;&lt;img src=&quot;https://hosted.weblate.org/widget/localsend/app/svg-badge.svg?sanitize=true&quot; alt=&quot;Translations&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://repology.org/project/localsend/versions&quot;&gt;&lt;img src=&quot;https://repology.org/badge/tiny-repos/localsend.svg?sanitize=true&quot; alt=&quot;Packaging status&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://localsend.org&quot;&gt;Homepage&lt;/a&gt; • &lt;a href=&quot;https://discord.gg/GSRWmQNP87&quot;&gt;Discord&lt;/a&gt; • &lt;a href=&quot;https://github.com/localsend/localsend&quot;&gt;GitHub&lt;/a&gt; • &lt;a href=&quot;https://codeberg.org/localsend/localsend&quot;&gt;Codeberg&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/README.md&quot;&gt;English (Default)&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_ES.md&quot;&gt;Español&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_FA.md&quot;&gt;فارسی&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_PH.md&quot;&gt;Filipino&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_FR.md&quot;&gt;Français&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_ID.md&quot;&gt;Indonesia&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_IT.md&quot;&gt;Italiano&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_JA.md&quot;&gt;日本語&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_KM.md&quot;&gt;ភាសាខ្មែរ&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_KO.md&quot;&gt;한국어&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_PL.md&quot;&gt;Polski&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_PT_BR.md&quot;&gt;Português Brasil&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_RU.md&quot;&gt;Русский&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_TH.md&quot;&gt;ภาษาไทย&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_TR.md&quot;&gt;Türkçe&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_UK.md&quot;&gt;Українська&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_VI.md&quot;&gt;Tiếng Việt&lt;/a&gt; • &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/readme_i18n/README_ZH.md&quot;&gt;中文&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;LocalSend is a free, open-source app that allows you to securely share files and messages with nearby devices over your local network without needing an internet connection.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#about&quot;&gt;About&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#sponsors&quot;&gt;Sponsors&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#screenshots&quot;&gt;Screenshots&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#download&quot;&gt;Download&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#how-it-works&quot;&gt;How It Works&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#getting-started&quot;&gt;Getting Started&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#contributing&quot;&gt;Contributing&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#translation&quot;&gt;Translation&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#bug-fixes-and-improvements&quot;&gt;Bug Fixes and Improvements&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#troubleshooting&quot;&gt;Troubleshooting&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#building&quot;&gt;Building&lt;/a&gt; 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#android&quot;&gt;Android&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#ios&quot;&gt;iOS&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#macos&quot;&gt;macOS&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#windows&quot;&gt;Windows&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#linux&quot;&gt;Linux&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;About&lt;/h2&gt; 
&lt;p&gt;LocalSend is a cross-platform app that enables secure communication between devices using a REST API and HTTPS encryption. Unlike other messaging apps that rely on external servers, LocalSend doesn&#39;t require an internet connection or third-party servers, making it a fast and reliable solution for local communication.&lt;/p&gt; 
&lt;h2&gt;Sponsors&lt;/h2&gt; 
&lt;p&gt;Browser testing via&lt;/p&gt; 
&lt;a href=&quot;https://www.testmuai.com/?utm_medium=sponsor&amp;amp;utm_source=localsend&quot; target=&quot;_blank&quot;&gt; &lt;img src=&quot;https://localsend.org/img/sponsors/tesmu.svg?sanitize=true&quot; style=&quot;vertical-align: middle;&quot; width=&quot;250&quot; height=&quot;45&quot; /&gt; &lt;/a&gt; 
&lt;h2&gt;Screenshots&lt;/h2&gt; 
&lt;p&gt;&lt;img src=&quot;https://localsend.org/img/screenshot-iphone.webp&quot; alt=&quot;iPhone screenshot&quot; height=&quot;300&quot; /&gt; &lt;img src=&quot;https://localsend.org/img/screenshot-pc.webp&quot; alt=&quot;PC screenshot&quot; height=&quot;300&quot; /&gt;&lt;/p&gt; 
&lt;h2&gt;Download&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://repology.org/project/localsend/versions&quot;&gt;&lt;img src=&quot;https://repology.org/badge/tiny-repos/localsend.svg?sanitize=true&quot; alt=&quot;Packaging status&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;It is recommended to download the app either from an app store or from a package manager because the app does not have an auto-update.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Windows&lt;/th&gt; 
   &lt;th&gt;macOS&lt;/th&gt; 
   &lt;th&gt;Linux&lt;/th&gt; 
   &lt;th&gt;Android&lt;/th&gt; 
   &lt;th&gt;iOS&lt;/th&gt; 
   &lt;th&gt;Fire OS&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/microsoft/winget-pkgs/tree/master/manifests/l/LocalSend/LocalSend&quot;&gt;Winget&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://apps.apple.com/us/app/localsend/id1661733229&quot;&gt;App Store&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://flathub.org/apps/details/org.localsend.localsend_app&quot;&gt;Flathub&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=org.localsend.localsend_app&quot;&gt;Play Store&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://apps.apple.com/us/app/localsend/id1661733229&quot;&gt;App Store&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://www.amazon.com/dp/B0BW6MP732&quot;&gt;Amazon&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://scoop.sh/#/apps?s=0&amp;amp;d=1&amp;amp;o=true&amp;amp;q=localsend&amp;amp;id=fb88113be361ca32c0dcac423cb4afdeda0b0c66&quot;&gt;Scoop&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://formulae.brew.sh/cask/localsend&quot;&gt;Homebrew&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://search.nixos.org/packages?show=localsend&quot;&gt;Nixpkgs&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://f-droid.org/packages/org.localsend.localsend_app&quot;&gt;F-Droid&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://community.chocolatey.org/packages/localsend&quot;&gt;Chocolatey&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;DMG Installer&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://snapcraft.io/localsend&quot;&gt;Snap&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;APK&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;EXE Installer&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://aur.archlinux.org/packages/localsend-bin&quot;&gt;AUR&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;Portable ZIP&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;TAR&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;DEB&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://github.com/localsend/localsend/releases/latest&quot;&gt;AppImage&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;Read more about &lt;a href=&quot;https://github.com/localsend/localsend/raw/main/CONTRIBUTING.md#distribution&quot;&gt;distribution channels&lt;/a&gt;.&lt;/p&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-caution&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-stop mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Caution&lt;/p&gt;
 &lt;p&gt;&lt;strong&gt;Unofficial MSIX preview:&lt;/strong&gt; you can try builds from the latest commits at &lt;a href=&quot;https://localsend.ob-buff.dev/&quot;&gt;localsend.ob-buff.dev&lt;/a&gt;. Stability is not guaranteed and all custom code tweaks are listed on that site.&lt;/p&gt; 
&lt;/div&gt; 
&lt;p&gt;&lt;strong&gt;Compatibility&lt;/strong&gt;&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Platform&lt;/th&gt; 
   &lt;th&gt;Minimum Version&lt;/th&gt; 
   &lt;th&gt;Note&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Android&lt;/td&gt; 
   &lt;td&gt;5.0&lt;/td&gt; 
   &lt;td&gt;-&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;iOS&lt;/td&gt; 
   &lt;td&gt;12.0&lt;/td&gt; 
   &lt;td&gt;-&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;macOS&lt;/td&gt; 
   &lt;td&gt;11 Big Sur&lt;/td&gt; 
   &lt;td&gt;Use OpenCore Legacy Patcher 2.0.2 (See &lt;a href=&quot;https://github.com/localsend/localsend/issues/1005#issuecomment-2449899384&quot;&gt;#1005&lt;/a&gt;)&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows&lt;/td&gt; 
   &lt;td&gt;10&lt;/td&gt; 
   &lt;td&gt;The last version to support Windows 7 is v1.15.4. There might be backports of newer versions for Windows 7 in the future.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Linux&lt;/td&gt; 
   &lt;td&gt;N.A.&lt;/td&gt; 
   &lt;td&gt;Deps: Gnome: &lt;code&gt;xdg-desktop-portal&lt;/code&gt; and &lt;code&gt;xdg-desktop-portal-gtk&lt;/code&gt;, KDE: &lt;code&gt;xdg-desktop-portal&lt;/code&gt; and &lt;code&gt;xdg-desktop-portal-kde&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Setup&lt;/h2&gt; 
&lt;p&gt;In most cases, LocalSend should work out of the box. However, if you are having trouble sending or receiving files, you may need to configure your firewall to allow LocalSend to communicate over your local network.&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Traffic Type&lt;/th&gt; 
   &lt;th&gt;Protocol&lt;/th&gt; 
   &lt;th&gt;Port&lt;/th&gt; 
   &lt;th&gt;Action&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Incoming&lt;/td&gt; 
   &lt;td&gt;TCP, UDP&lt;/td&gt; 
   &lt;td&gt;53317&lt;/td&gt; 
   &lt;td&gt;Allow&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Outgoing&lt;/td&gt; 
   &lt;td&gt;TCP, UDP&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Allow&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;Also make sure to disable AP isolation on your router. It should be usually disabled by default but some routers may have it enabled (especially guest networks). See &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/#troubleshooting&quot;&gt;troubleshooting&lt;/a&gt; for more information.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Portable Mode&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;(Introduced in v1.13.0)&lt;/p&gt; 
&lt;p&gt;Create a file named &lt;code&gt;settings.json&lt;/code&gt; located in the same directory as the executable. This file can be empty. The app will use this file to store settings instead of the default location.&lt;/p&gt; 
&lt;p&gt;&lt;strong&gt;Start hidden&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;(Updated in v1.15.0)&lt;/p&gt; 
&lt;p&gt;To start the app hidden (only in tray), use the &lt;code&gt;--hidden&lt;/code&gt; flag (example: &lt;code&gt;localsend_app.exe --hidden&lt;/code&gt;).&lt;/p&gt; 
&lt;p&gt;On v1.14.0 and earlier, the app starts hidden if &lt;code&gt;autostart&lt;/code&gt; flag is set, and the hidden setting is enabled.&lt;/p&gt; 
&lt;h2&gt;How It Works&lt;/h2&gt; 
&lt;p&gt;LocalSend uses a secure communication protocol that allows devices to communicate with each other using a REST API. All data is sent securely over HTTPS, and the TLS/SSL certificate is generated on the fly on each device, ensuring maximum security.&lt;/p&gt; 
&lt;p&gt;For more information on the LocalSend Protocol, see the &lt;a href=&quot;https://github.com/localsend/protocol&quot;&gt;documentation&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Getting Started&lt;/h2&gt; 
&lt;p&gt;To compile LocalSend from the source code, follow these steps:&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Install Flutter &lt;a href=&quot;https://flutter.dev&quot;&gt;directly&lt;/a&gt; or using &lt;a href=&quot;https://fvm.app&quot;&gt;fvm&lt;/a&gt; (see &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/.fvmrc&quot;&gt;version required&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;Install &lt;a href=&quot;https://www.rust-lang.org/tools/install&quot;&gt;Rust&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Clone the &lt;code&gt;LocalSend&lt;/code&gt; repository&lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;cd app&lt;/code&gt; to enter the app directory&lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;flutter pub get&lt;/code&gt; to download dependencies&lt;/li&gt; 
 &lt;li&gt;Run &lt;code&gt;flutter run&lt;/code&gt; to start the app&lt;/li&gt; 
&lt;/ol&gt; 
&lt;div class=&quot;markdown-alert markdown-alert-note&quot;&gt;
 &lt;p class=&quot;markdown-alert-title&quot;&gt;
  &lt;svg class=&quot;octicon octicon-info mr-2&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;
   &lt;path d=&quot;M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z&quot;&gt;&lt;/path&gt;
  &lt;/svg&gt;Note&lt;/p&gt;
 &lt;p&gt;LocalSend currently requires an older Flutter version (specified in &lt;a href=&quot;https://raw.githubusercontent.com/localsend/localsend/main/.fvmrc&quot;&gt;.fvmrc&lt;/a&gt;) and thus build issues may be caused by a mismatch between the required and the (system-wide) installed Flutter version.&lt;br /&gt; To make development more consistent, LocalSend uses &lt;a href=&quot;https://fvm.app&quot;&gt;fvm&lt;/a&gt; to manage the project Flutter version. After installing &lt;code&gt;fvm&lt;/code&gt;, run &lt;code&gt;fvm flutter&lt;/code&gt; instead of &lt;code&gt;flutter&lt;/code&gt;.&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;Contributing&lt;/h2&gt; 
&lt;p&gt;We welcome contributions from anyone interested in helping improve LocalSend. If you&#39;d like to contribute, there are a few ways to get involved:&lt;/p&gt; 
&lt;h3&gt;Translation&lt;/h3&gt; 
&lt;p&gt;You can help translate LocalSend into other languages. We use the &lt;a href=&quot;https://hosted.weblate.org/projects/localsend/app&quot;&gt;Weblate&lt;/a&gt; platform to manage translations.&lt;/p&gt; 
&lt;p&gt;Alternatively, you can also contribute by forking this repository and adding translations manually.&lt;/p&gt; 
&lt;p&gt;The translations are located in the &lt;a href=&quot;https://github.com/localsend/localsend/tree/main/app/assets/i18n&quot;&gt;app/assets/i18n&lt;/a&gt; directory. Edit the &lt;code&gt;_missing_translations_&amp;lt;locale&amp;gt;.json&lt;/code&gt; or &lt;code&gt;strings_&amp;lt;locale&amp;gt;.i18n.json&lt;/code&gt; file to add or update translations.&lt;/p&gt; 
&lt;a href=&quot;https://hosted.weblate.org/engage/localsend/&quot;&gt; &lt;img src=&quot;https://hosted.weblate.org/widget/localsend/app/multi-auto.svg?sanitize=true&quot; alt=&quot;Translation status&quot; /&gt; &lt;/a&gt; 
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Take note:&lt;/em&gt; Fields decorated with &lt;code&gt;@&lt;/code&gt; are not meant to be translated; they are not used in the app in any way, being merely informative text about the file or to give context to the translator.&lt;/strong&gt;&lt;/p&gt; 
&lt;h3&gt;Bug Fixes and Improvements&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Bug Fixes:&lt;/strong&gt; If you find a bug, please create a pull request with a clear description of the issue and how to fix it.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Improvements:&lt;/strong&gt; Have an idea for how to improve LocalSend? Please create an issue first to discuss why the improvement is needed.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;For more information, see the &lt;a href=&quot;https://github.com/localsend/localsend/raw/main/CONTRIBUTING.md&quot;&gt;contributing guide&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Troubleshooting&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Issue&lt;/th&gt; 
   &lt;th&gt;Platform (Sending)&lt;/th&gt; 
   &lt;th&gt;Platform (Receiving)&lt;/th&gt; 
   &lt;th&gt;Solution&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Device not visible&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Make sure to disable AP-Isolation on your router. If it is enabled, connections between devices are forbidden.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Device not visible&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Windows&lt;/td&gt; 
   &lt;td&gt;Make sure to configure your network as a &quot;private&quot; network. Windows might be more restrictive when the network is configured as public.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Device not visible&lt;/td&gt; 
   &lt;td&gt;macOS, iOS&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;You can try to toggle the &quot;Local Network&quot; permission under &quot;Privacy&quot; in the OS settings.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Speed too slow&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Use 5 Ghz; Disable encryption on both devices&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Speed too slow&lt;/td&gt; 
   &lt;td&gt;Any&lt;/td&gt; 
   &lt;td&gt;Android&lt;/td&gt; 
   &lt;td&gt;Known issue. &lt;a href=&quot;https://github.com/flutter-cavalry/saf_stream/issues/4&quot;&gt;https://github.com/flutter-cavalry/saf_stream/issues/4&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Building&lt;/h2&gt; 
&lt;p&gt;These commands are intended for maintainers only. Make sure to run them from the &lt;code&gt;app&lt;/code&gt; directory.&lt;/p&gt; 
&lt;h3&gt;Android&lt;/h3&gt; 
&lt;p&gt;Traditional APK&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build apk
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;AppBundle for Google Play&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build appbundle
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;iOS&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build ipa
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;macOS&lt;/h3&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build macos
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Windows&lt;/h3&gt; 
&lt;p&gt;&lt;strong&gt;Traditional&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build windows
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;Local MSIX App&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter pub run msix:create
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;Store ready&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter pub run msix:create --store
&lt;/code&gt;&lt;/pre&gt; 
&lt;h3&gt;Linux&lt;/h3&gt; 
&lt;p&gt;&lt;strong&gt;Traditional&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;flutter build linux
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;AppImage&lt;/strong&gt;&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;appimage-builder --recipe AppImageBuilder.yml
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;&lt;strong&gt;Snap&lt;/strong&gt;&lt;/p&gt; 
&lt;p&gt;Instructions in &lt;a href=&quot;https://github.com/localsend/snap/raw/main/README.md&quot;&gt;localsend/snap/README.md&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;Contributors&lt;/h2&gt; 
&lt;a href=&quot;https://github.com/localsend/localsend/graphs/contributors&quot;&gt; &lt;img src=&quot;https://contrib.rocks/image?repo=localsend/localsend&quot; alt=&quot;Localsend Contributors&quot; /&gt; &lt;/a&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/578822531/6c3c4f46-0ab9-4737-9afe-7fa7f2f929d7" medium="image" />
      
    </item>
    
    <item>
      <title>Solido/awesome-flutter</title>
      <link>https://github.com/Solido/awesome-flutter</link>
      <description>&lt;p&gt;An awesome list that curates the best Flutter libraries, tools, tutorials, articles and more.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;a href=&quot;https://flutter.dev/&quot;&gt;&lt;img src=&quot;https://user-images.githubusercontent.com/1295961/45949308-cbb2f680-bffb-11e8-8054-28c35ed6d132.png&quot; align=&quot;center&quot; width=&quot;850&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://github.com/sindresorhus/awesome&quot;&gt; &lt;img alt=&quot;Awesome&quot; src=&quot;https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg?sanitize=true&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;https://twitter.com/blueaquilae&quot;&gt; &lt;img alt=&quot;Awesome&quot; src=&quot;https://img.shields.io/twitter/url/https/twitter.com/blueaquilae.svg?style=social&amp;amp;label=Follow%20%40blueaquilae&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://trendshift.io/repositories/9391&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;https://trendshift.io/api/badge/repositories/9391&quot; alt=&quot;Solido%2Fawesome-flutter | Trendshift&quot; style=&quot;width: 250px; height: 55px;&quot; width=&quot;250&quot; height=&quot;55&quot; /&gt;&lt;/a&gt; &lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://flutter.dev/&quot;&gt;Flutter&lt;/a&gt; is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. If you appreciate the content 📖, support projects visibility, give 👍| ⭐| 👏&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;a href=&quot;https://getstream.io/chat/sdk/flutter/?utm_source=Github&amp;amp;utm_medium=Github_Repo_Content_Ad&amp;amp;utm_content=Developer&amp;amp;utm_campaign=Github_Mar2022_FlutterChatSDK&amp;amp;utm_term=Awesome&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/assets/images/stream-logo.png&quot; width=&quot;450&quot; alt=&quot;Stream Chat&quot; style=&quot;margin: 20px auto;&quot; /&gt; &lt;/a&gt; &lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Video, Voice, Feeds, and Moderation APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. &lt;/p&gt; 
&lt;br /&gt; 
&lt;h4&gt;Demonstrations&lt;/h4&gt; 
&lt;div style=&quot;text-align: center&quot;&gt;
 &lt;table&gt;
  &lt;tbody&gt;
   &lt;tr&gt; 
    &lt;td style=&quot;text-align: center, width: 180&quot;&gt; &lt;p&gt;&lt;a href=&quot;https://getstream.io/chat/sdk/flutter/?utm_source=Github&amp;amp;utm_medium=Github_Repo_Content_Ad&amp;amp;utm_content=Developer&amp;amp;utm_campaign=Github_Mar2022_FlutterChatSDK&amp;amp;utm_term=Awesome&quot;&gt;Instant Chat Integration&lt;/a&gt;&lt;/p&gt; &lt;a href=&quot;https://getstream.io/chat/sdk/flutter/?utm_source=Github&amp;amp;utm_medium=Github_Repo_Content_Ad&amp;amp;utm_content=Developer&amp;amp;utm_campaign=Github_Mar2022_FlutterChatSDK&amp;amp;utm_term=Awesome&quot;&gt; &lt;img alt=&quot;Stream&quot; src=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/.github/stream-animation.gif&quot; /&gt; &lt;/a&gt; &lt;p&gt;&lt;a href=&quot;https://getstream.io/chat/sdk/flutter/?utm_source=Github&amp;amp;utm_medium=Github_Repo_Content_Ad&amp;amp;utm_content=Developer&amp;amp;utm_campaign=Github_Mar2022_FlutterChatSDK&amp;amp;utm_term=Awesome&quot;&gt;with Stream!&lt;/a&gt;&lt;/p&gt; &lt;/td&gt; 
    &lt;td style=&quot;text-align: center&quot;&gt; &lt;img width=&quot;480&quot; alt=&quot;Heroine&quot; src=&quot;https://github.com/whynotmake-it/rivership/raw/main/packages/heroine/doc/main.gif&quot; /&gt; &lt;/td&gt; 
   &lt;/tr&gt;
  &lt;/tbody&gt;
 &lt;/table&gt;
&lt;/div&gt; 
&lt;h2&gt;Contents&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#articles&quot;&gt;Articles&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#videos&quot;&gt;Videos&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#components&quot;&gt;Components&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#navigation&quot;&gt;Navigation&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#templates&quot;&gt;Template&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#plugins&quot;&gt;Plugins&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#frameworks&quot;&gt;Frameworks&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#experimental&quot;&gt;Experimental&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#open-source-apps&quot;&gt;Open Source Apps&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#web&quot;&gt;Web&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#utilities&quot;&gt;Utilities&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#bonus&quot;&gt;Bonus&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#community&quot;&gt;Community&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Articles&lt;/h2&gt; 
&lt;h3&gt;Introduction&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-io/building-beautiful-flexible-user-interfaces-with-flutter-material-theming-and-official-material-13ae9279ef19&quot;&gt;Google IO 2018&lt;/a&gt; - Building beautiful, flexible user interfaces.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://speakerdeck.com/hjjunior/why-i-chose-flutter&quot;&gt;Presentation&lt;/a&gt; - by &lt;a href=&quot;https://github.com/hjJunior&quot;&gt;Helio S. Junior&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/ins-and-outs-of-flutter-web-7a82721dc19a&quot;&gt;Flutter Web&lt;/a&gt; - Ins and Outs of Flutter Web by &lt;a href=&quot;https://github.com/nash0x7e2&quot;&gt;Nash&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Websites / Blogs&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://didierboelens.com&quot;&gt;Welcome to Flutter&lt;/a&gt; - English and French blog dedicated to providing practical solutions to most asked questions about Flutter by Didier Boelens.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marcinszalek.pl/&quot;&gt;SZAŁKO-BLOG&lt;/a&gt; - Step by step advanced design by &lt;a href=&quot;https://marcinszalek.pl&quot;&gt;Marcin Szalek&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutterbyexample.com/&quot;&gt;Flutter by Example&lt;/a&gt; - Tutorials based on Redux, Firebase, Custom Animations, and UI.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutter.institute/&quot;&gt;Flutter Institute&lt;/a&gt; - Very original content and tutorials by &lt;a href=&quot;https://twitter.com/flutterinst&quot;&gt;Brian Armstrong&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@norbertkozsir&quot;&gt;Norbert&lt;/a&gt; - In depth articles, features and app creation by &lt;a href=&quot;https://github.com/Norbert515&quot;&gt;Norbert515&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@diegoveloper&quot;&gt;Flutter Tips&lt;/a&gt; - Articles, tips &amp;amp; tricks in the development by &lt;a href=&quot;https://twitter.com/diegoveloper&quot;&gt;Diego Velásquez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.filledstacks.com/&quot;&gt;FilledStacks&lt;/a&gt; - Tutorials and guides on development by &lt;a href=&quot;https://www.instagram.com/filledstacks/&quot;&gt;Dane Mackier&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/erluxman/awesomefluttertips/&quot;&gt;Awesome Flutter tips&lt;/a&gt; - Tips to help developers increase productivity by &lt;a href=&quot;https://twitter.com/erluxman/&quot;&gt;erluxman&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;http://flutter4fun.com&quot;&gt;Flutter4Fun&lt;/a&gt; - UI Challenge implementation blog by &lt;a href=&quot;https://github.com/imaNNeoFighT&quot;&gt;Iman Khoshabi&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://blog.canopas.com/tagged/canopas-flutter-weekly&quot;&gt;Flutter Stack Weekly&lt;/a&gt; - Weekly newsletter on new development and updates curated by &lt;a href=&quot;https://twitter.com/jimmys0251&quot;&gt;Jimmy Sanghani&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Tutorial&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codelabs.developers.google.com/codelabs/flutter/#0&quot;&gt;Animated Chat&lt;/a&gt; - Building beautiful UIs by Google Code Labs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://codelabs.developers.google.com/codelabs/flutter-firebase/#0&quot;&gt;Firebase Chat&lt;/a&gt; - Firebase integration by Google Code Labs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://suragch.medium.com/flutter-and-dart-development-articles-981be9ef7b23&quot;&gt;Flutter and Dart development&lt;/a&gt; - Articles and tutorials by &lt;a href=&quot;https://twitter.com/Suragch1&quot;&gt;Suragch&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Beginner&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/olexale/flutter_roadmap&quot;&gt;Roadmap to Flutter Development&lt;/a&gt; [5794⭐] - Visual roadmap with principles, patterns, and frameworks for Flutter newbies by &lt;a href=&quot;https://github.com/olexale&quot;&gt;Olexandr Leuschenko&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/flutter-layout-cheat-sheet-5363348d037e&quot;&gt;Layout Cheat Sheet&lt;/a&gt; - Extensive examples of layout widgets by &lt;a href=&quot;https://github.com/tomaszpolanski&quot;&gt;Tomek Polański&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.raywenderlich.com/24499516-getting-started-with-flutter&quot;&gt;Getting Started with Flutter&lt;/a&gt; - by &lt;a href=&quot;https://www.raywenderlich.com&quot;&gt;raywenderlich.com&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/antz22/ultimate-guide-to-flutter&quot;&gt;Beginner&#39;s Guide&lt;/a&gt; [431⭐] - Comprehensive guide to the basics of Flutter and Firebase by &lt;a href=&quot;https://github.com/antz22&quot;&gt;Anthony&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Intermediate&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://suragch.medium.com/flutter-state-management-for-minimalists-4c71a2f2f0c1?sk=6f9cedfb550ca9cc7f88317e2e7055a0&quot;&gt;Flutter state management for minimalists&lt;/a&gt; - Understanding app architecture without relying on third-party frameworks by &lt;a href=&quot;https://twitter.com/Suragch1&quot;&gt;Suragch&lt;/a&gt;. See also &lt;a href=&quot;https://raw.githubusercontent.com/Solido/awesome-flutter/master/#state-management&quot;&gt;State Management&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Advanced&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=UUfXWzp0-DU&quot;&gt;Rendering Pipeline&lt;/a&gt; [1187👍] and &lt;a href=&quot;https://www.youtube.com/watch?v=VsYbFnucHsU&quot;&gt;Let&#39;s build a render tree&lt;/a&gt; - Engine architecture by Adam Barth.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/flutter-what-are-widgets-renderobjects-and-elements-630a57d05208&quot;&gt;Render Objects&lt;/a&gt; - What are Widgets, RenderObjects and Elements? by &lt;a href=&quot;https://github.com/Norbert515&quot;&gt;Norbert515&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://skillsmatter.com/skillscasts/12254-flutter-with-streams-and-rxdart&quot;&gt;Streams and RxDart&lt;/a&gt; - Skillmatters presentation by &lt;a href=&quot;https://github.com/brianegan&quot;&gt;Brian Egan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/flutter-deep-dive-gestures-c16203b3434f&quot;&gt;Gesture System&lt;/a&gt; - Flutter Deep Dive: Gestures by &lt;a href=&quot;https://github.com/nash0x7e2&quot;&gt;Nash&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.didierboelens.com/2018/06/widget---state---context---inheritedwidget/&quot;&gt;Schemas&lt;/a&gt; - Widget, State, Context and InheritedWidget explanations by &lt;a href=&quot;https://didierboelens.com&quot;&gt;Didier Boelens&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/saugo360/flutters-rendering-engine-a-tutorial-part-1-e9eff68b825d&quot;&gt;Rendering Engine Tutorial&lt;/a&gt; - Flutter&#39;s Rendering Engine: A Tutorial by &lt;a href=&quot;https://github.com/AbdulRahmanAlHamali/&quot;&gt;AbdulRahman AlHamali&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@chemamolins/is-flutters-inheritedwidget-a-good-fit-to-hold-app-state-2ec5b33d023e&quot;&gt;Inherited Widget&lt;/a&gt; - Flutter’s InheritedWidget to hold app state by &lt;a href=&quot;https://github.com/jmolins&quot;&gt;Chema Molins&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/flutter-from-mobile-to-desktop-93635e8de64e&quot;&gt;From Mobile to Desktop&lt;/a&gt; - Building applications for smartphones and desktops by &lt;a href=&quot;https://neppel.com.br&quot;&gt;Marcelo Henrique Neppel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/a-deep-dive-into-flutters-accessibility-widgets-eb0ef9455bc&quot;&gt;Accessibility widgets&lt;/a&gt; - Deep dive information about all aspects of accessibility by &lt;a href=&quot;https://twitter.com/salihgueler&quot;&gt;Muhammed Salih Güler&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-io/profiling-flutter-applications-using-the-timeline-a1a434964af3&quot;&gt;Profiling w/ Timeline&lt;/a&gt; - Using the Timeline allows you to find and address specific performance issues in your application by &lt;a href=&quot;https://medium.com/@chinmaygarde&quot;&gt;Chinmay Garde&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Advanced graphics rendering&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wolfenrain.medium.com/flutter-shaders-an-initial-look-d9eb98d3fd7a&quot;&gt;Shaders&lt;/a&gt; - Fragment shaders, set it up, how it works and making it work by &lt;a href=&quot;https://twitter.com/wolfenrain&quot;&gt;Jochum van der Ploeg&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Howtos&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marcinszalek.pl/flutter/tickets-challenge-parallax&quot;&gt;Parallax Effect&lt;/a&gt; - Parallax &amp;amp; non linear animation by &lt;a href=&quot;https://marcinszalek.pl&quot;&gt;Marcin Szalek&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@salvatoregiordanoo/flavoring-flutter-392aaa875f36&quot;&gt;Build Flavor&lt;/a&gt; - Define build configurations and switch them by &lt;a href=&quot;https://medium.com/@salvatoregiordanoo&quot;&gt;Salvatore Giordano&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@angeloavv/easily-build-flavors-in-flutter-android-and-ios-with-flutter-flavorizr-d48cbf956e4&quot;&gt;Build Flavor&lt;/a&gt; - Easily build flavors in Flutter (Android and iOS) with flutter_flavorizr by &lt;a href=&quot;https://medium.com/@angeloavv&quot;&gt;Angelo Cassano&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Videos&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=CPmN4-i9zC8&amp;amp;list=PLOU2XLYxmsIK0r_D-zWcmJ1plIcDNnRkK&quot;&gt;Boring Show&lt;/a&gt; - Exploration with the Flutter Team.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=WwhyaqNtNQY&amp;amp;list=PLJbE2Yu2zumDqr_-hqpAN0nIr6m14TAsd&quot;&gt;Tensor Programming&lt;/a&gt; [86🎬] - Very rich content by &lt;a href=&quot;http://tensor-programming.com/&quot;&gt;Tensor Programming&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=qWL1lGchpRA&amp;amp;list=PLR2qQy0Zxs_UdqAcaipPR3CG1Ly57UlhV&quot;&gt;Mtechviral&lt;/a&gt; [264🎬] - [Hindi/English] Mtechviral Series By &lt;a href=&quot;https://github.com/iampawan&quot;&gt;Pawan Kumar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/playlist?list=PLhXZp00uXBk5TSY6YOdmpzp1yG3QbFvrN&quot;&gt;Flutter in Practice&lt;/a&gt; - Free video courses for beginners &amp;amp; non-programmers by &lt;a href=&quot;https://zaiste.net/&quot;&gt;Zaiste&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/c/whatsupcoders&quot;&gt;Whatsupcoders&lt;/a&gt; [82🎬] - Free video series on Flutter Widgets by &lt;a href=&quot;https://github.com/whatsupcoders&quot;&gt;Kamal&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/channel/UCSIvrn68cUk8CS8MbtBmBkA&quot;&gt;Reso Coder&lt;/a&gt; - Intermediate and advanced videos by &lt;a href=&quot;https://github.com/ResoCoder&quot;&gt;Matej Rešetár&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Components&lt;/h2&gt; 
&lt;h3&gt;Demonstrations&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/gallery&quot;&gt;Official Gallery&lt;/a&gt; - Demo for the material design widgets provided by Flutter Team.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nisrulz/flutter-examples&quot;&gt;Flutter Examples&lt;/a&gt; [7112⭐] - Simple basic isolated apps for devs by &lt;a href=&quot;https://github.com/nisrulz&quot;&gt;Nishant Srivastava&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/X-Wei/flutter_catalog&quot;&gt;Flutter Catalog&lt;/a&gt; [2256⭐] - showcasing Flutter components, with side-by-side source code view, by &lt;a href=&quot;https://github.com/X-Wei&quot;&gt;X-Wei&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Solido/flutter-d-art&quot;&gt;Generative Art&lt;/a&gt; [479⭐] - Generative Art by &lt;a href=&quot;https://github.com/Solido&quot;&gt;Robert Felker&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;UI&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xqwzts/flutter_radial_menu&quot;&gt;Radial Menu&lt;/a&gt; [505⭐] - Animated Radial Menu by &lt;a href=&quot;https://github.com/xqwzts&quot;&gt;Victor Choueiri&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ivaskuu/tinder_cards&quot;&gt;Tinder Cards&lt;/a&gt; [929⭐] - Tinder like cards swipe effect by &lt;a href=&quot;https://github.com/Ivaskuu&quot;&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hnvn/flutter_flip_panel&quot;&gt;Flip Panel&lt;/a&gt; [614⭐] - Flip panel with built-in animation by &lt;a href=&quot;https://github.com/hnvn&quot;&gt;HungHD&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/duytq94/facebook-reaction-animation&quot;&gt;Facebook Reactions&lt;/a&gt; [443⭐] - Facebook reactions widget by &lt;a href=&quot;https://github.com/duytq94&quot;&gt;Duy Tran&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AndreHaueisen/flushbar&quot;&gt;Flushbar&lt;/a&gt; [1023⭐] - Highly configurable Snackbar by &lt;a href=&quot;https://github.com/AndreHaueisen&quot;&gt;Andre Haueisen&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Rahiche/stepper_touch&quot;&gt;Stepper Touch&lt;/a&gt; [355⭐] - Lateral value stepper nicely animated by &lt;a href=&quot;https://github.com/Rahiche&quot;&gt;Raouf Rahiche&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/faob-dev/folding_cell&quot;&gt;Folding Cell&lt;/a&gt; [563⭐] - Fold your widget by &lt;a href=&quot;https://github.com/faob-dev&quot;&gt;Faob&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aagarwal1012/Liquid-Pull-To-Refresh&quot;&gt;Liquid Pull To Refresh&lt;/a&gt; [1290⭐] - A beautiful and custom refresh indicator by &lt;a href=&quot;https://github.com/aagarwal1012/&quot;&gt;Ayush Agarwal&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LanarsInc/direct-select-flutter&quot;&gt;Direct Select&lt;/a&gt; [806⭐] - Selection widget with an ethereal, full-screen modal popup by &lt;a href=&quot;https://github.com/iyatsouba&quot;&gt;Ivan Yatsouba&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xsahil03x/before_after&quot;&gt;Before After&lt;/a&gt; [1006⭐] - Beautiful slider which makes it easier to display the difference between two images, by &lt;a href=&quot;https://github.com/xsahil03x&quot;&gt;Sahil Kumar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vintage/scratcher&quot;&gt;Scratcher&lt;/a&gt; [643⭐] - Scratch card widget which temporarily hides content from user, by &lt;a href=&quot;https://github.com/vintage&quot;&gt;Kamil Rykowski&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aliyigitbireroglu/flutter-image-sequence-animator&quot;&gt;Image Sequence Animator&lt;/a&gt; [153⭐] - A simple widget for animating a set of images with full custom controls as an alternative to using a GIF file by &lt;a href=&quot;https://github.com/aliyigitbireroglu&quot;&gt;Ali Yigit Bireroglu&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jaweii/Flutter_beautiful_popup&quot;&gt;Beautiful_Popup&lt;/a&gt; [727⭐] - Beautify your app popup by &lt;a href=&quot;https://github.com/jaweii&quot;&gt;jaweii&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Origogi/Flutter-Credit-Card-Input&quot;&gt;Credit Card Form&lt;/a&gt; [494⭐] - Animated credit card input form &lt;a href=&quot;https://github.com/Origogi&quot;&gt;Origogi&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sbilketay/animated_selection_slide&quot;&gt;Animated Selection Slide&lt;/a&gt; An animated selection widget by swiping by &lt;a href=&quot;https://github.com/sbilketay&quot;&gt;Sezgin Bilgetay&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Dn-a/flutter_tags&quot;&gt;Flutter Tags&lt;/a&gt; [507⭐] - Tags with different customizations by &lt;a href=&quot;https://github.com/Dn-a&quot;&gt;Di Natale Antonino&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Idean/Flutter-Neumorphic&quot;&gt;Flutter Neumorphic&lt;/a&gt; [2137⭐] - Ready to use Neumorphic kit for Flutter with 🕶️ dark mode.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/HatFeather/flutter_dough&quot;&gt;Dough&lt;/a&gt; [735⭐] - Widgets for a squishy user interface by &lt;a href=&quot;https://github.com/HatFeather&quot;&gt;Josiah Saunders&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/codegrue/card_settings&quot;&gt;Card Settings&lt;/a&gt; [559⭐] - package for building settings forms by &lt;a href=&quot;https://github.com/codegrue&quot;&gt;codegrue&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/chulwoo-park/timelines&quot;&gt;Timelines&lt;/a&gt; [768⭐] - Powerful &amp;amp; Easy to use timeline package by &lt;a href=&quot;https://github.com/chulwoo-park&quot;&gt;Chulwoo Park&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JHBitencourt/timeline_tile&quot;&gt;Timeline Tile&lt;/a&gt; [783⭐] - Tile to help build beautiful and customisable timelines by &lt;a href=&quot;https://github.com/JHBitencourt&quot;&gt;Julio Bitencourt&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/chrisedg87/flutter_rounded_loading_button&quot;&gt;Rounded Loading Button&lt;/a&gt; [358⭐] - Button with a loading indicator, complete with success and error animations by &lt;a href=&quot;https://twitter.com/ChrisTheEdg&quot;&gt;Chris Edgington&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flyerhq/flutter_chat_ui&quot;&gt;Flyer Chat&lt;/a&gt; [2070⭐] - Community-driven chat UI implementation by the &lt;a href=&quot;https://github.com/flyerhq&quot;&gt;Flyer Chat team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Milad-Akarie/smooth_page_indicator&quot;&gt;Smooth Page Indicator&lt;/a&gt; [1383⭐] - Customizable animated page indicator with a set of built-in effects. &lt;a href=&quot;https://github.com/Milad-Akarie&quot;&gt;Milad Akarie&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/superlistapp/super_editor/&quot;&gt;Super Editor&lt;/a&gt; [?⭐] - Advanced toolkit for building document editors and readers by &lt;a href=&quot;https://flutterbountyhunters.com&quot;&gt;Flutter Bounty Hunters&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Libraries&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/forus-labs/forui&quot;&gt;Forui&lt;/a&gt; [1379⭐] - Minimalistic UI library heavily inspired by shadcn/ui by &lt;a href=&quot;https://github.com/forus-labs&quot;&gt;Forus Labs&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nank1ro/flutter-shadcn-ui&quot;&gt;Shadcn&lt;/a&gt; [2276⭐] - Shadcn-ui port. Fully customizable UI components.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Tencent/tdesign-flutter&quot;&gt;TDesign Flutter&lt;/a&gt; [951⭐] - A useful UI component library matches the TDesign style by &lt;a href=&quot;https://github.com/Tencent&quot;&gt;Tencent&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;List&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/superlistapp/super_sliver_list&quot;&gt;Super List&lt;/a&gt; [384⭐] - Drop-in replacement for SliverList and ListView that can handle large amount of items with variable extents by &lt;a href=&quot;https://github.com/knopp&quot;&gt;Matej Knopp&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hanshengchiu/reorderables&quot;&gt;Reorderables&lt;/a&gt; [759⭐] - Drag&amp;amp;Drop Table, Row, Column, Wrap(Grid) and SliverList elements by &lt;a href=&quot;https://github.com/hanshengchiu&quot;&gt;Hansheng Chiu&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aagarwal1012/Liquid-Pull-To-Refresh&quot;&gt;Liquid Pull To Refresh&lt;/a&gt; [1290⭐] - A beautiful and custom refresh indicator by &lt;a href=&quot;https://github.com/aagarwal1012/&quot;&gt;Ayush Agarwal&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/flutter_infinite_listview&quot;&gt;Infinite Listview&lt;/a&gt; [303⭐] - Infinite scroll in both directions by &lt;a href=&quot;https://github.com/slightfoot&quot;&gt;Simon Lightfoot&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bosskmk/pluto_grid&quot;&gt;PlutoGrid&lt;/a&gt; [725⭐] - Web and desktop datagrid that can be controlled by the keyboard by &lt;a href=&quot;https://github.com/bosskmk&quot;&gt;bosskmk&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AbdulRahmanAlHamali/flutter_typeahead&quot;&gt;Typeahead&lt;/a&gt; [847⭐] - Display overlay suggestions to users as they type by &lt;a href=&quot;https://github.com/AbdulRahmanAlHamali&quot;&gt;Abdul Rahman Al Hamali&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ariedov/flutter_snaplist&quot;&gt;Snaplist&lt;/a&gt; [456⭐] - Create snappable list views by &lt;a href=&quot;https://github.com/ariedov&quot;&gt;David Leibovych&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/letsar/flutter_staggered_grid_view&quot;&gt;StaggeredGridView&lt;/a&gt; [3206⭐] - GridView with tiles of variable sizes by &lt;a href=&quot;https://github.com/letsar&quot;&gt;Romain Rastel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/slightfoot/flutter_sticky_headers&quot;&gt;Sticky Headers&lt;/a&gt; [1131⭐] - Configurable sticky headers by &lt;a href=&quot;http://www.devangels.london/&quot;&gt;Simon Lightfoot&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Drawers&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RafaelBarbosatec/hidden_drawer_menu&quot;&gt;Hidden Drawer Menu&lt;/a&gt; [354⭐] - Beautiful drawer mode menu feature with perspective animations by &lt;a href=&quot;https://github.com/RafaelBarbosatec&quot;&gt;Rafael Almeida Barbosa&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Dn-a/flutter_inner_drawer&quot;&gt;Flutter Inner Drawer&lt;/a&gt; [517⭐] - Easy way to create an internal drawer (left / right) where you can enter a list-menu or other by &lt;a href=&quot;https://github.com/Dn-a&quot;&gt;Di Natale Antonino&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Bottom bars&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tunitowen/fancy_bottom_navigation&quot;&gt;Fancy Bottom Navigation&lt;/a&gt; [808⭐] - Animated bottom navigation by &lt;a href=&quot;https://github.com/tunitowen&quot;&gt;Tony Owen&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/imaNNeoFighT/circular_bottom_navigation&quot;&gt;Circular Bottom Navigation&lt;/a&gt; [680⭐] - Beautiful animated bottom navigation bar by &lt;a href=&quot;https://github.com/imaNNeoFighT&quot;&gt;Iman Khoshabi&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pedromassango/bottom_navy_bar&quot;&gt;Bottom Navy Bar&lt;/a&gt; [1069⭐] - Beautiful and colorful animated bottom navigation bar by &lt;a href=&quot;https://github.com/pedromassango&quot;&gt;Pedro Massango&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pedromassango/titled_navigation_bar&quot;&gt;Titled Navigation Bar&lt;/a&gt; [370⭐] - Animated bottom navigation bar that switch between icon and title by &lt;a href=&quot;http://github.com/pedromassango&quot;&gt;Pedro Massango&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sooxt98/google_nav_bar&quot;&gt;Google Nav Bar&lt;/a&gt; [772⭐] - A modern google style nav bar for flutter by &lt;a href=&quot;http://github.com/sooxt98&quot;&gt;Sooxt98&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Bottom Sheets&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mcrovero/rubber&quot;&gt;Rubber Bottom Sheet&lt;/a&gt; [566⭐] - Elastic material bottom sheet by &lt;a href=&quot;https://github.com/mcrovero&quot;&gt;Mattia Crovero&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jamesblasco/modal_bottom_sheet&quot;&gt;Modal Bottom Sheet&lt;/a&gt; [1959⭐] - Modal bottom sheet with Material, Cupertino iOS13 or custom appareance by &lt;a href=&quot;https://github.com/jamesblasco&quot;&gt;Jaime Blasco&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Sliders&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/boeledi/RangeSlider&quot;&gt;RangeSlider&lt;/a&gt; [376⭐] - 2-thumb configurable RangeSlider by &lt;a href=&quot;https://www.didierboelens.com&quot;&gt;Didier Boelens&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rvamsikrishna/flutter_fluid_slider&quot;&gt;Fluid Slider&lt;/a&gt; [324⭐] - A slider with a minimal design and fluid like animation by &lt;a href=&quot;https://github.com/rvamsikrishna&quot;&gt;Vamsi Krishna&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ali-Azmoud/flutter_xlider&quot;&gt;Flutter Xlider&lt;/a&gt; [524⭐] - A material design slider and range slider, horizontal and vertical, with RTL support by &lt;a href=&quot;https://github.com/Ali-Azmoud&quot;&gt;Ali-Azmoud&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;UI Helpers&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jogboms/flutter_offline&quot;&gt;Offline&lt;/a&gt; [1245⭐] - Tidy utility to handle offline/online connectivity by &lt;a href=&quot;https://twitter.com/jogboms&quot;&gt;Jeremiah Ogbomo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rvamsikrishna/inview_notifier_list&quot;&gt;In View Notifier List&lt;/a&gt; [?⭐] - ListView that notify when widgets are on screen within a provided area by &lt;a href=&quot;https://github.com/inview_notifier_list&quot;&gt;Vamsi Krishna&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/simformsolutions/flutter_showcaseview&quot;&gt;ShowCaseView&lt;/a&gt; [1805⭐] - Way to showcase your app features on iOS and Android by &lt;a href=&quot;https://github.com/simformsolutions&quot;&gt;Simform&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leoafarias/mix&quot;&gt;Mix&lt;/a&gt; [724⭐] - An expressive way to effortlessly build design systems by &lt;a href=&quot;https://github.com/leoafarias&quot;&gt;Leo Farias&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/flutter_blurhash&quot;&gt;Blurhash&lt;/a&gt; [556⭐] - Compact representation of a placeholder for an image. Encode a blurry image under 30 characters by &lt;a href=&quot;https://www.linkedin.com/in/robert-felker/&quot;&gt;Robert Felker&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Material Design&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tiagojencmartins/unicornspeeddial&quot;&gt;Unicorn Speed Dial&lt;/a&gt; [345⭐] - Floating Action Button with Speed Dial by &lt;a href=&quot;https://github.com/tiagojencmartins&quot;&gt;Tiago Martins&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/letsar/flutter_slidable&quot;&gt;Slidable&lt;/a&gt; [2828⭐] - Slidable list item with left and right slide actions by &lt;a href=&quot;https://github.com/letsar&quot;&gt;Romain Rastel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/backdrop&quot;&gt;Backdrop&lt;/a&gt; [341⭐] - &lt;a href=&quot;https://material.io/design/components/backdrop.html&quot;&gt;Backdrop&lt;/a&gt; implementation for flutter.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Effect&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;http://stackoverflow.com/questions/43550853/how-do-i-do-the-frosted-glass-effect-in-flutter&quot;&gt;Frosted Glass&lt;/a&gt; - Render effect by &lt;a href=&quot;http://www.collinjackson.com&quot;&gt;Collin Jackson&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/roughike/page-transformer&quot;&gt;Parallax&lt;/a&gt; [876⭐] - ViewPager by &lt;a href=&quot;https://github.com/roughike&quot;&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hnvn/flutter_shimmer&quot;&gt;Shimmer&lt;/a&gt; [1832⭐] - Shimmer effect while content is loading by &lt;a href=&quot;https://github.com/hnvn&quot;&gt;HungHD&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/i-protoss/wave&quot;&gt;Wave&lt;/a&gt; [1122⭐] - Displaying some waves with custom color, duration, floating and blur effects by &lt;a href=&quot;https://github.com/RockerFlower&quot;&gt;RockerFlower&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iamSahdeep/liquid_swipe_flutter&quot;&gt;Liquid Swipe&lt;/a&gt; - Liquid swipe to your stacked containers by &lt;a href=&quot;https://github.com/iamSahdeep&quot;&gt;Sahdeep Singh&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/skkallayath/photofilters&quot;&gt;PhotoFilters&lt;/a&gt; [427⭐] - Apply filters to an image by &lt;a href=&quot;https://github.com/skkallayath&quot;&gt;Sharafudheen KK&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JonathanMonga/flutter_shine.dart&quot;&gt;Shine&lt;/a&gt; [149⭐] - Pretty shadows with dynamic light positions by &lt;a href=&quot;https://github.com/JonathanMonga/&quot;&gt;Jonathan Monga&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mcaubrey/clay_containers&quot;&gt;Clay Containers&lt;/a&gt; [456⭐] - Neumorphic widget primitives to serve as the foundation of your own designs by &lt;a href=&quot;https://github.com/mcaubrey&quot;&gt;Michael Charles&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Calendar&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pinkfish/flutter_calendar&quot;&gt;Calendar Widget&lt;/a&gt; [243⭐] - Calendar widget by &lt;a href=&quot;https://github.com/pinkfish&quot;&gt;David Bennett&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dooboolab/flutter_calendar_carousel&quot;&gt;Calendar Carousel Widget&lt;/a&gt; 
  &lt;!-- stargazers:dooboolab/flutter_calendar_carousel--&gt; - Calendar carousel by &lt;a href=&quot;https://github.com/dooboolab/flutter_calendar_carousel&quot;&gt;dooboolab&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aleksanderwozniak/table_calendar&quot;&gt;Table Calendar&lt;/a&gt; [1937⭐] - Calendar organized neatly into a Table, with vertical autosizing by &lt;a href=&quot;https://github.com/aleksanderwozniak&quot;&gt;Aleksander Woźniak&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Jamalianpour/time_planner&quot;&gt;Time Planner&lt;/a&gt; [238⭐] - A beautiful, easy to use and customizable time planner for flutter mobile, desktop and web by &lt;a href=&quot;https://github.com/Jamalianpour&quot;&gt;Mohammad Jamalianpour&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Backend-Driven&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dengyin2000/dynamic_widget&quot;&gt;Dynamic Widget&lt;/a&gt; [1630⭐] - Build your dynamic UI with json, and the json format is very similar with flutter widget code by &lt;a href=&quot;https://github.com/dengyin2000&quot;&gt;Denny Deng&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Image&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/serenader2014/flutter_carousel_slider&quot;&gt;Carousel Slider&lt;/a&gt; [1671⭐] - Carousel slider widget, support infinite scroll and custom child widget by &lt;a href=&quot;https://github.com/serenader2014&quot;&gt;serenader&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pulyaevskiy/parallax-image&quot;&gt;Parallax Image&lt;/a&gt; [278⭐] - Image parallax by &lt;a href=&quot;https://github.com/pulyaevskiy&quot;&gt;Anatoly Pulyaevskiy&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/renancaraujo/photo_view&quot;&gt;Photo View&lt;/a&gt; [1982⭐] - Scalable image view with loading placeholder by &lt;a href=&quot;https://github.com/renancaraujo&quot;&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dnfield/flutter_svg&quot;&gt;SVG&lt;/a&gt; [1689⭐] - SVG parsing, rendering, and widget library by &lt;a href=&quot;https://github.com/dnfield&quot;&gt;Dan Field&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hnvn/flutter_image_cropper&quot;&gt;Image Cropper&lt;/a&gt; [1046⭐] - Crop your images support ratio, rotation, zoom by &lt;a href=&quot;https://github.com/hnvn&quot;&gt;HungHD&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/renefloor/flutter_cached_network_image&quot;&gt;Cached Network Image&lt;/a&gt; [2547⭐] - Show images from the internet and keep them in the cache directory by.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xvrh/lottie-flutter&quot;&gt;Lottie&lt;/a&gt; [1257⭐] - Use airbnb&#39;s popular &lt;a href=&quot;https://airbnb.design/lottie/&quot;&gt;After Effects Animation library&lt;/a&gt; by &lt;a href=&quot;https://github.com/xvrh/lottie-flutter&quot;&gt;xvrh&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/renancaraujo/bitmap&quot;&gt;Bitmap&lt;/a&gt; [176⭐] - Perform Bitmap manipulations (such as contrast and exposure) with a help from the Dart FFI by &lt;a href=&quot;https://github.com/renancaraujo&quot;&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xclud/flutter_crop&quot;&gt;Crop&lt;/a&gt; [259⭐] - Crop any widget/image in Android, iOS, Web and Desktop by &lt;a href=&quot;https://github.com/xclud/&quot;&gt;Mahdi K. Fard&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Image Picker&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/packages/tree/main/packages/image_picker&quot;&gt;Image Picker&lt;/a&gt; - Images Selection by &lt;a href=&quot;http://www.collinjackson.com&quot;&gt;Collin Jackson&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercandies/flutter_wechat_assets_picker&quot;&gt;WeChat Assets Picker&lt;/a&gt; [1616⭐] - Assets picker in WeChat style, support multi assets by &lt;a href=&quot;https://github.com/AlexV525&quot;&gt;Alex Li&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/advance_image_picker&quot;&gt;Advance Image Picker&lt;/a&gt; - Select and edit images from Android/iOS library and capture camera shots from within the same view by &lt;a href=&quot;https://github.com/weta-vn&quot;&gt;WetaVN&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Map&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/apptreesoftware/flutter_google_map_view&quot;&gt;Google Map View&lt;/a&gt; [415⭐] - Displaying google map plugin by &lt;a href=&quot;https://www.linkedin.com/company/apptree-software/&quot;&gt;AppTree Software&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aloisdeniel/flutter_geocoder&quot;&gt;GeoCoder&lt;/a&gt; [191⭐] - Forward and reverse geocoding by &lt;a href=&quot;https://aloisdeniel.github.com&quot;&gt;Aloïs Deniel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mapbox/flutter-mapbox-gl&quot;&gt;Mapbox GL&lt;/a&gt; [270⭐] - Interactive, customizable vector maps by Mapbox.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttify-project/amap_map_fluttify&quot;&gt;AMap&lt;/a&gt; [540⭐] - Access to AMap services(高德地图) by &lt;a href=&quot;https://github.com/fluttify-project&quot;&gt;fluttify-project&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xclud/flutter_map&quot;&gt;Map&lt;/a&gt; [139⭐] - Fully-fledged interactive Map widget for flutter written in pure Dart. Supports all platforms. by &lt;a href=&quot;https://github.com/xclud/&quot;&gt;Mahdi K. Fard&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Charts&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xqwzts/flutter_circular_chart&quot;&gt;Circular Chart&lt;/a&gt; [406⭐] - Animated radial and pie charts by &lt;a href=&quot;https://github.com/xqwzts&quot;&gt;Victor Choueiri&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/xqwzts/flutter_sparkline&quot;&gt;Sparkline&lt;/a&gt; [258⭐] - Sparkline by &lt;a href=&quot;https://github.com/xqwzts&quot;&gt;Victor Choueiri&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/trentpiercy/flutter-candlesticks&quot;&gt;Candlesticks&lt;/a&gt; [429⭐] - OHLC and Trade Volume Charts by &lt;a href=&quot;https://github.com/trentpiercy&quot;&gt;Trent Piercy&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/thekeenant/fcharts&quot;&gt;FCharts&lt;/a&gt; [326⭐] - Beautiful, responsive, animated charts by &lt;a href=&quot;https://keenant.com&quot;&gt;Keenan Thompson&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/imaNNeoFighT/fl_chart&quot;&gt;FL Chart&lt;/a&gt; [7313⭐] - Draw fantastic charts in Flutter by &lt;a href=&quot;http://www.ikhoshabi.com&quot;&gt;Iman Khoshabi&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aeyrium/bezier-chart&quot;&gt;Bezier Chart&lt;/a&gt; [451⭐] - Beautiful bezier line chart widget for flutter that is highly interactive and configurable by &lt;a href=&quot;https://twitter.com/diegoveloper&quot;&gt;Diego Velasquez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/entronad/flutter_echarts&quot;&gt;Echarts&lt;/a&gt; [765⭐] - Large collection of advanced reactives charts by &lt;a href=&quot;https://github.com/entronad&quot;&gt;LIN Chen&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/entronad/graphic&quot;&gt;Graphic&lt;/a&gt; [1737⭐] - Data visualization library based on the Grammar of Graphics by &lt;a href=&quot;https://github.com/entronad&quot;&gt;LIN Chen&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Navigation&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/goposse/fluro&quot;&gt;Fluro&lt;/a&gt; [3710⭐] - The brightest, hippest, coolest router for Flutter with Navigation, wildcard, query, transitions by &lt;a href=&quot;http://goposse.com&quot;&gt;Posse&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leocavalcante/page_view_indicator&quot;&gt;PageView Indicator&lt;/a&gt; [165⭐] - Build page indicators for the PageView by &lt;a href=&quot;https://github.com/leocavalcante&quot;&gt;Leo Cavalcante&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Dennis-Krasnov/Flutter-Deep-Link-Navigation&quot;&gt;Deep Link Navigation&lt;/a&gt; [67⭐] - Elegant abstraction for complete deep linking navigation in Flutter by &lt;a href=&quot;https://denniskrasnov.com&quot;&gt;Dennis Krasnov&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jonataslaw/get&quot;&gt;Get&lt;/a&gt; [11002⭐] - Navigate between screens &amp;amp; display snackbars/dialogs/bottomSheets without context by &lt;a href=&quot;https://github.com/jonataslaw&quot;&gt;Jonny Borges&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/slovnicki/beamer&quot;&gt;Beamer&lt;/a&gt; [602⭐] - Route through guarded page stacks and URLs using the Navigator 2.0 API effortlessly by &lt;a href=&quot;https://github.com/slovnicki&quot;&gt;Sandro Lovnički&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/csells/go_router&quot;&gt;go_router&lt;/a&gt; [440⭐] - Declarative routes to reduce complexity, deep linking for mobile and the web while maintaining developer experience by &lt;a href=&quot;https://github.com/csells&quot;&gt;Chris Sells&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Milad-Akarie/auto_route_library&quot;&gt;auto_route&lt;/a&gt; [1708⭐] - AutoRoute is a declarative routing solution, where everything needed for navigation is automatically generated for you. &lt;a href=&quot;https://github.com/Milad-Akarie&quot;&gt;Milad_Akarie&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Auth&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/packages/tree/main/packages/local_auth&quot;&gt;Local Auth&lt;/a&gt; - Touch ID, lock code, fingerprint auth on iOS and Android.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AppleEducate/flutter_login&quot;&gt;Login&lt;/a&gt; [710⭐] - FaceID, TouchID, and Fingerprint Reader by &lt;a href=&quot;http://appleeducate.com&quot;&gt;Rody Davis&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/packages/tree/main/packages/google_sign_in&quot;&gt;Google Sign-In&lt;/a&gt; - Google OAuth.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_auth&quot;&gt;Firebase Auth&lt;/a&gt; - Firebase OAuth.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/roughike/flutter_facebook_login&quot;&gt;Facebook Login&lt;/a&gt; [405⭐] - Authenticate with native Android &amp;amp; iOS Facebook login SDKs by &lt;a href=&quot;https://github.com/roughike&quot;&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tomgilder/flutter_apple_sign_in&quot;&gt;Apple Sign-In&lt;/a&gt; [160⭐] - Apple sign in by &lt;a href=&quot;https://github.com/tomgilder&quot;&gt;Tom Gilder&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hitherejoe/FlutterOAuth&quot;&gt;OAuth&lt;/a&gt; [177⭐] - Buffer, Strava, Unsplash, Github OAuth by &lt;a href=&quot;http://www.hitherejoe.com&quot;&gt;Joe Birch&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/@gildaswise/flutter-adding-sign-in-with-google-and-phone-authentication-to-your-app-69f681518f9b&quot;&gt;Firebase Phone Auth&lt;/a&gt; - Phone number auth via SMS by &lt;a href=&quot;https://github.com/gildaswise&quot;&gt;Gildásio Filho&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Clancey/simple_auth&quot;&gt;SimpleAuth&lt;/a&gt; [352⭐] - Azure Active Directory, Amazon, Dropbox, Facebook, Github, Google, Instagram, Linked In, Microsoft Live Connect, Github, OAuth, Basic Auth by &lt;a href=&quot;https://github.com/Clancey&quot;&gt;James Clancey&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MaikuB/flutter_appauth&quot;&gt;Flutter AppAuth&lt;/a&gt; [293⭐] - Plugin that provides a wrapper around the AppAuth iOS and Android SDKs by &lt;a href=&quot;https://github.com/MaikuB&quot;&gt;Michael Bui&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/corbado/flutter-passkeys&quot;&gt;Passkeys&lt;/a&gt; [158⭐] Authenticate your users with passkeys (e.g. Face ID, Touch ID, screen lock) based on FIDO2 / WebAuthn by &lt;a href=&quot;https://github.com/corbado&quot;&gt;Corbado&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Text &amp;amp; Rich Content&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/benhurott/flutter-masked-text&quot;&gt;Masked Text&lt;/a&gt; [275⭐] - Masked text with custom and monetary formatting by &lt;a href=&quot;https://github.com/benhurott&quot;&gt;Ben-hur Santos Ott&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fleather-editor/fleather&quot;&gt;Fleather&lt;/a&gt; 
  &lt;!--stargazersfleather-editor/fleather--&gt; - Soft &amp;amp; gentle rich text editor.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leisim/auto_size_text&quot;&gt;AutoSizeText&lt;/a&gt; [2111⭐] - Automatically resizes text to fit perfectly within its bounds by &lt;a href=&quot;https://github.com/leisim&quot;&gt;Simon Leier&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fayeed/flutter_parsed_text&quot;&gt;Parsed Text&lt;/a&gt; [222⭐] - Interactive text based on content recognition, also supports Regex by &lt;a href=&quot;https://github.com/fayeed/&quot;&gt;Fayeed Pawaskar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/shah-xad/flutter_tex&quot;&gt;TeX&lt;/a&gt; [295⭐] - Render Mathematics Equations with full HTML and JavaScript support by &lt;a href=&quot;https://github.com/shah-xad&quot;&gt;Shahzad Akram&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/BertrandBev/code_field&quot;&gt;Code Field&lt;/a&gt; - Customizable code field widget supporting syntax highlighting by &lt;a href=&quot;https://github.com/BertrandBev&quot;&gt;Bertrand Bevillard&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Forms&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/danvick/flutter_form_builder&quot;&gt;Form Builder&lt;/a&gt; [1581⭐] - Framework that simplifies building forms, validating fields, reacting to changes, and collecting the final user input by &lt;a href=&quot;https://github.com/danvick&quot;&gt;Danvick Miller&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/joanpablo/reactive_forms&quot;&gt;Reactive Forms&lt;/a&gt; [490⭐] - Model-driven approach to handling Forms inputs and validations, heavily inspired in Angular&#39;s Reactive Forms.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Analytics&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dart-lang/usage&quot;&gt;Usage&lt;/a&gt; [147⭐] - Google Analytics wrapper for command-line, web, and Flutter apps.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_analytics&quot;&gt;Firebase Analytics&lt;/a&gt; - Connect to Firebase Analytics API.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/seenickcode/pure_mixpanel&quot;&gt;Pure Mixpanel&lt;/a&gt; [25⭐] - Analytics for the popular &lt;a href=&quot;https://mixpanel.com&quot;&gt;Mixpanel.com&lt;/a&gt; &lt;a href=&quot;https://twitter.com/seenickcode&quot;&gt;Nick Manning&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Internationalization&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KingWu/gen_lang&quot;&gt;GenLang&lt;/a&gt; [100⭐] - Code generator for Internationalization by &lt;a href=&quot;https://github.com/KingWu&quot;&gt;King Wu&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bratan/flutter_translate&quot;&gt;Flutter Translate&lt;/a&gt; [412⭐] - Internationalization (i18n) library by &lt;a href=&quot;http://bratan.me&quot;&gt;Florin Bratan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fkirc/attranslate&quot;&gt;attranslate&lt;/a&gt; - Semi-automated translation of ARB or JSON files by &lt;a href=&quot;https://github.com/fkirc&quot;&gt;fkirc&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Styling&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rxlabz/flutterial&quot;&gt;Flutterial&lt;/a&gt; [1753⭐] - Flutter Material Theme explorer by &lt;a href=&quot;https://twitter.com/rxlabz&quot;&gt;Erick Ghaumez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bregydoc/pigment&quot;&gt;Pigment&lt;/a&gt; [216⭐] - Simple but useful package for use colors in flutter.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Media&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercandies/flutter_photo_manager&quot;&gt;photo_manager&lt;/a&gt; [739⭐] - Provides assets (image/video/audio) abstraction management APIs that can be easily integrated with custom UI widgets by &lt;a href=&quot;https://github.com/CaiJingLong&quot;&gt;CaiJingLong&lt;/a&gt; and &lt;a href=&quot;https://github.com/AlexV525&quot;&gt;Alex Li&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Audio&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/luanpotter/audioplayers&quot;&gt;Audio Players Plugin&lt;/a&gt; [2108⭐] - Play multiple audio files simultaneously (Android/iOS) by &lt;a href=&quot;https://github.com/luanpotter&quot;&gt;Luan Nico&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/shadow-app/flutter_audio_recorder&quot;&gt;Flutter Audio Recorder&lt;/a&gt; - Provides full controls and access to recording details such as level metering by &lt;a href=&quot;https://github.com/nikli2009&quot;&gt;Wenyan Li&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dooboolab/flutter_sound&quot;&gt;Flutter Sound&lt;/a&gt; [925⭐] - Flutter audio recorder and player at one hand by &lt;a href=&quot;https://github.com/dooboolab&quot;&gt;dooboolab&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/florent37/Flutter-AssetsAudioPlayer&quot;&gt;AssetsAudioPlayer&lt;/a&gt; [770⭐] Simultaneous playback of audio from assets/network/file and displaying notifications [android / ios / web / macos]&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/audio_service&quot;&gt;Audio Service&lt;/a&gt; - System background audio support by &lt;a href=&quot;https://github.com/ryanheise&quot;&gt;Ryan Heise&lt;/a&gt;. &lt;a href=&quot;https://suragch.medium.com/background-audio-in-flutter-with-audio-service-and-just-audio-3cce17b4a7d?sk=0837a1b1773e27a4f879ff3072e90305&quot;&gt;Tutorial&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/Suragch1&quot;&gt;Suragch&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Video&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/cloudwebrtc/flutter-webrtc&quot;&gt;WebRTC&lt;/a&gt; [4386⭐] - WebRTC plugin for iOS/Android by &lt;a href=&quot;https://github.com/cloudwebrtc&quot;&gt;CloudWebRtc&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/brianegan/chewie&quot;&gt;Chewie&lt;/a&gt; [2034⭐] - Provides low-level access to video playback by &lt;a href=&quot;https://github.com/brianegan&quot;&gt;Brian Egan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sbis04/video_trimmer&quot;&gt;Video Trimmer&lt;/a&gt; [477⭐] - Visualise and trim videos by &lt;a href=&quot;https://github.com/sbis04&quot;&gt;Souvik Biswas&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Apparence-io/camera_awesome&quot;&gt;CamerAwesome&lt;/a&gt; [1117⭐] - Community camera plugin rework by &lt;a href=&quot;https://apparence.io&quot;&gt;Apparence.io studio&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LeGoffMael/video_editor&quot;&gt;Video Editor&lt;/a&gt; [472⭐] - Edit (crop, trim, rotate) a video and its cover by &lt;a href=&quot;https://github.com/LeGoffMael&quot;&gt;Maël Le Goff&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Voice&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rxlabz/speech_recognition&quot;&gt;Speech Recognition&lt;/a&gt; [338⭐] - Speech to text by &lt;a href=&quot;https://twitter.com/rxlabz&quot;&gt;Erick Ghaumez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marcinszalek.pl/flutter/ok-google-flutter/&quot;&gt;OK Google&lt;/a&gt; - Integrate google assistant by &lt;a href=&quot;https://marcinszalek.pl/&quot;&gt;Marcin Szalek&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Storage&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_storage&quot;&gt;Firebase Storage&lt;/a&gt; - Firebase as data storage.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mogol/flutter_secure_storage&quot;&gt;Secure Storage&lt;/a&gt; [1234⭐] - Keychain and Keystore storage by &lt;a href=&quot;https://github.com/mogol&quot;&gt;German Saprykin&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Preferences&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/roughike/streaming_shared_preferences&quot;&gt;Streaming Shared Preferences&lt;/a&gt; [248⭐] - Reactive key-value store, shared preferences with Streams by &lt;a href=&quot;https://github.com/roughike&quot;&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Monetization&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/admob&quot;&gt;Admob&lt;/a&gt; - GoogleAdmob supports interstitial ads in both iOS and Android by Brett Nesbitt.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_admob&quot;&gt;Firebase AdMob&lt;/a&gt; - Ad integration using Firebase.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dooboolab/flutter_inapp_purchase&quot;&gt;Inapp Purchase&lt;/a&gt; [573⭐] - Features set of &#39;in app purchase&#39; derived from &lt;a href=&quot;https://github.com/dooboolab/react-native-iap&quot;&gt;react-native-iap&lt;/a&gt; by &lt;a href=&quot;https://github.com/dooboolab&quot;&gt;dooboolab&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kmcgill88/admob_flutter&quot;&gt;Admob Flutter&lt;/a&gt; - Admob plugin that shows banner ads using native platform views by &lt;a href=&quot;https://github.com/YoussefKababe&quot;&gt;Youssef Kababe&lt;/a&gt; &amp;amp; &lt;a href=&quot;https://github.com/kmcgill88&quot;&gt;Kevin McGill&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dreamsoftin/facebook_audience_network&quot;&gt;Facebook Audience Network&lt;/a&gt; - Facebook Audience Network Ad plugin that shows banner, interstitial, in-stream video, rewarded video &amp;amp; native ads by &lt;a href=&quot;https://github.com/dreamsoftin&quot;&gt;Dreamsoft Innovations&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/square/in-app-payments-flutter-plugin&quot;&gt;Square In-App Payments SDK&lt;/a&gt; [342⭐] - Take payments by embedding a card entry form in your app that produces nonces from customer-provided card information or digital wallets by &lt;a href=&quot;https://github.com/orgs/square&quot;&gt;Square&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Templates&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FlutterRocks/movie-details-ui&quot;&gt;Movie Details&lt;/a&gt; [429⭐] - Movie details page by &lt;a href=&quot;https://github.com/roughike&quot;&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/CodemateLtd/FlutterMates&quot;&gt;Mates&lt;/a&gt; [598⭐] - How to load profiles from the &lt;a href=&quot;http://randomuser.me&quot;&gt;randomuser.me&lt;/a&gt; API and a nice profile details page by &lt;a href=&quot;https://github.com/roughike&quot;&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alessandroaime/Weather&quot;&gt;Weather&lt;/a&gt; [156⭐] - Weather app to learn how to use Canvas and Animation by &lt;a href=&quot;https://github.com/alessandroaime&quot;&gt;Alessandro Aime&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/brianegan/flutter_architecture_samples&quot;&gt;TodoMVC&lt;/a&gt; [8859⭐] - TODO application ready to go with different flavors : Vanilla, Redux, built_redux by &lt;a href=&quot;https://github.com/brianegan&quot;&gt;Brian Egan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/braulio94/menu_flutter&quot;&gt;Restaurant Menu&lt;/a&gt; [624⭐] - Restaurant menu by &lt;a href=&quot;https://github.com/braulio94&quot;&gt;Braulio Cassule&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tomialagbe/flutter_ui_challenges&quot;&gt;UI Challenges&lt;/a&gt; [1514⭐] - Profile, Travel, Food App by &lt;a href=&quot;https://github.com/tomialagbe&quot;&gt;Tomi Alagbe&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/matthinc/flutter_cupertino_settings&quot;&gt;Cupertino Settings&lt;/a&gt; [233⭐] - iOS Settings by &lt;a href=&quot;https://github.com/matthinc&quot;&gt;Matthias Rupp&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/thosakwe/flutter_music_player&quot;&gt;Music Player&lt;/a&gt; [224⭐] - music player component by &lt;a href=&quot;https://thosakwe.com/&quot;&gt;Tobe O&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Ivaskuu/dashboard&quot;&gt;Dashboard&lt;/a&gt; [936⭐] - Dashboard and Shop Items by &lt;a href=&quot;https://github.com/Ivaskuu&quot;&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/littlemarc2011/FlutterTodo&quot;&gt;Todo&lt;/a&gt; [582⭐] - Todo template from Dribble by &lt;a href=&quot;https://www.marc-little.com/&quot;&gt;Marc L&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iampawan/Flutter-UI-Kit&quot;&gt;UI Kit&lt;/a&gt; [6277⭐] - Collection of useful UIs in a UIKit by &lt;a href=&quot;https://github.com/iampawan&quot;&gt;Pawan Kumar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/putraxor/flutter-book-app&quot;&gt;Book&lt;/a&gt; [354⭐] - Bookshelf by &lt;a href=&quot;https://github.com/putraxor&quot;&gt;Ardiansyah Putra&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/huextrat/TheGorgeousLogin&quot;&gt;The Gorgeous Login&lt;/a&gt; [1770⭐] - Design and smooth login template by &lt;a href=&quot;https://github.com/huextrat&quot;&gt;Hugo Extrat&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/longhoang2984/flutter_payment_app_ui&quot;&gt;Liquid Pay Payment App&lt;/a&gt; [309⭐] - Liquid Pay App Concept by &lt;a href=&quot;https://github.com/longhoang2984&quot;&gt;Long Hoang&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/SnakeyHips/drawapp&quot;&gt;DrawApp&lt;/a&gt; [240⭐] - Sample Drawing App to demonstrate how to allow user to draw onto canvas with color picker and brush thickness slider by &lt;a href=&quot;https://github.com/SnakeyHips&quot;&gt;Jake Gough&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KingWu/flutter_starter_kit&quot;&gt;Starter Kit&lt;/a&gt; [804⭐] - App Store implementation to learn Bloc, RxDart, Sqflite, Fluro and Dio. by &lt;a href=&quot;https://github.com/KingWu&quot;&gt;King Wu&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jhomlala/feather&quot;&gt;Feather&lt;/a&gt; [682⭐] - Beautiful weather application. Application includes RxDart, Dio, BLoC, i18n, unit and widget tests. by &lt;a href=&quot;https://github.com/jhomlala&quot;&gt;Jakub Homlala&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/javico2609/flutter-challenges&quot;&gt;Clone UI Challenges&lt;/a&gt; [1514⭐] - Collection of useful UIs clones by &lt;a href=&quot;https://github.com/javico2609&quot;&gt;Javier González&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JideGuru/FlutterFoodybite&quot;&gt;FlutterFoodybite&lt;/a&gt; [1686⭐] - Beautiful food app UI template by &lt;a href=&quot;https://github.com/JideGuru&quot;&gt;JideGuru&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/diegoveloper/flutter-samples&quot;&gt;Flutter Samples&lt;/a&gt; [3191⭐] - Collection of nice flutter samples by &lt;a href=&quot;https://github.com/diegoveloper&quot;&gt;Diego Velásquez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gregertw/actingweb_firstapp&quot;&gt;ActingWeb First_App&lt;/a&gt; [517⭐] - Starter app with basic elements for a team-developed production-quality app by &lt;a href=&quot;https://github.com/gregertw&quot;&gt;Greger Wedel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pawlik92/flutter_whirlpool&quot;&gt;Smart Washing Machine&lt;/a&gt; [903⭐] - Smart washing machine UI challenge app with Box2D physic engine by &lt;a href=&quot;https://github.com/pawlik92&quot;&gt;Tomasz Pawlikowski&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JHBitencourt/beautiful_timelines&quot;&gt;Beautiful Timelines&lt;/a&gt; [330⭐] - A set of beautiful timelines by &lt;a href=&quot;https://github.com/JHBitencourt&quot;&gt;Julio Bitencourt&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Clone&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pd4d10/git-touch&quot;&gt;GitTouch&lt;/a&gt; [1649⭐] - Open source mobile client for GitHub, GitLab, Bitbucket and Gitea by &lt;a href=&quot;https://github.com/pd4d10&quot;&gt;Rongjian Zhang&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rustdesk/rustdesk&quot;&gt;RustDesk&lt;/a&gt; [99332⭐] - Open source virtual / remote desktop. TeamViewer alternative. Built with Rust by &lt;a href=&quot;https://www.rustdesk.com/&quot;&gt;RustDesk team&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Machine Learning&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/azihsoyn/flutter_mlkit&quot;&gt;MLKit&lt;/a&gt; [388⭐] - Firebase Machine Learning Kit by &lt;a href=&quot;https://github.com/azihsoyn&quot;&gt;Naoya Yoshizawa&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/BayesWitnesses/m2cgen&quot;&gt;m2cgen&lt;/a&gt; [2915⭐] - CLI tool to convert ML models into native Dart code by &lt;a href=&quot;https://github.com/BayesWitnesses&quot;&gt;BayesWitnesses&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Vision&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/santetis/flutter_camera_ml_vision&quot;&gt;ML Vision Camera Stream&lt;/a&gt; [273⭐] - ML vision recognitions (QRcode, face, ...) with live camera stream by &lt;a href=&quot;https://github.com/jaumard&quot;&gt;Aumard Jimmy&lt;/a&gt; and &lt;a href=&quot;https://github.com/santetis&quot;&gt;Santetis&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/edufolly/flutter_mobile_vision&quot;&gt;Google Mobile Vision&lt;/a&gt; [456⭐] - Google Mobile Vision by &lt;a href=&quot;https://github.com/edufolly&quot;&gt;Eduardo Folly&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Augmented Reality&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/olexale/arkit_flutter_plugin&quot;&gt;ARKit Plugin&lt;/a&gt; [830⭐] - Wrapper for ARKit - Apple&#39;s augmented reality platform for iOS by &lt;a href=&quot;https://github.com/olexale&quot;&gt;Olexandr Leuschenko&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/giandifra/arcore_flutter_plugin&quot;&gt;ARCore Plugin&lt;/a&gt; [446⭐] - Augmented reality with ARCore platform by &lt;a href=&quot;https://github.com/giandifra&quot;&gt;Gian Marco Di Francesco&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Plugins&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/flutter/packages&quot;&gt;Pub packages&lt;/a&gt; - Packages filter in Dart Pub Repository.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/packages/tree/main/packages&quot;&gt;Plugins&lt;/a&gt; - Official Flutter Team Plugins.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Device&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dart-flitter/flutter_webview_plugin&quot;&gt;WebView&lt;/a&gt; [1491⭐] - Render web content by &lt;a href=&quot;https://twitter.com/HadrienLejard&quot;&gt;Hadrien Lejard&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Lyokone/flutterlocation&quot;&gt;Location&lt;/a&gt; [1144⭐] - Handle location, handling callbacks to get continuous location by &lt;a href=&quot;https://github.com/Lyokone&quot;&gt;Lyokone&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/proximity_plugin&quot;&gt;Proximity Sensor Plugin&lt;/a&gt; - A plugin to access the proximity sensor of your device by &lt;a href=&quot;https://github.com/Samaritan1011001&quot;&gt;Manoj NB&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/loup-v/geolocation&quot;&gt;Geolocation&lt;/a&gt; [228⭐] - Fully featured geolocation plugin: current location, location updates, geocode, places and more by &lt;a href=&quot;http://intheloup.io&quot;&gt;Loup&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/MaikuB/flutter_local_notifications&quot;&gt;Local Notifications&lt;/a&gt; [2624⭐] - Plugin for displaying local notifications by &lt;a href=&quot;https://github.com/MaikuB&quot;&gt;Michael Bui&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/builttoroam/device_calendar&quot;&gt;Device Calendar&lt;/a&gt; - Plugin for modifying calendars on the user&#39;s device by &lt;a href=&quot;http://builttoroam.com&quot;&gt;Built to Roam&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/g123k/flutter_app_badger&quot;&gt;Badger&lt;/a&gt; [309⭐] - Update app badge on the launcher by &lt;a href=&quot;https://twitter.com/g123k&quot;&gt;Edouard Marquez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/GigaDroid/flutter_udid&quot;&gt;UDID&lt;/a&gt; [272⭐] - Persistent UDID across app reinstalls by &lt;a href=&quot;https://kukuk.me&quot;&gt;Leon Kukuk&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/hnvn/flutter_downloader&quot;&gt;Downloader&lt;/a&gt; [1⭐] - Create and manage download tasks by &lt;a href=&quot;https://github.com/hnvn&quot;&gt;HungHD&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pichillilorenzo/flutter_inappwebview&quot;&gt;InAppWebView&lt;/a&gt; [3611⭐] - Add inline WebView widgets or open an in-app browser window by &lt;a href=&quot;https://github.com/pichillilorenzo&quot;&gt;Lorenzo Pichilli&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pichillilorenzo/flutter_appavailability&quot;&gt;AppAvailability&lt;/a&gt; [93⭐] - List, launch and check installed apps by &lt;a href=&quot;https://github.com/pichillilorenzo&quot;&gt;Lorenzo Pichilli&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/miguelpruivo/plugins_flutter_file_picker&quot;&gt;File Picker&lt;/a&gt; [1494⭐] - Native file explorer to load absolute file path by &lt;a href=&quot;https://github.com/miguelpruivo&quot;&gt;Miguel Ruivo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/X-dea/Flutter_VPN&quot;&gt;VPN&lt;/a&gt; [371⭐] - Access VPN services by &lt;a href=&quot;https://github.com/ctrysbita&quot;&gt;Jason C.H&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/baseflow/flutter-geolocator&quot;&gt;Geolocator&lt;/a&gt; [1311⭐] - A Flutter geolocation plugin which provides easy access to the platform specific location services by &lt;a href=&quot;https://baseflow.com&quot;&gt;Baseflow&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/baseflow/flutter-permission-handler&quot;&gt;Permission Handler&lt;/a&gt; [2144⭐] - A Flutter permission plugin which provides a cross-platform (iOS, Android) API to request and check permissions by &lt;a href=&quot;https://baseflow.com&quot;&gt;Baseflow&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fasky-software/flutter_widgetkit&quot;&gt;WidgetKit&lt;/a&gt; [?⭐] - A plugins which allows you to create a Widget-Extention for iOS by &lt;a href=&quot;https://github.com/tomLadder&quot;&gt;Thomas Leiter&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/istornz/live_activities&quot;&gt;Live Activities&lt;/a&gt; [233⭐] - A plugin to use iOS live activities &amp;amp; Dynamic Island features by &lt;a href=&quot;https://github.com/istornz&quot;&gt;Dimitri Dessus&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Scanner&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/villela/flutter_qrcode_reader&quot;&gt;QR Code Reader&lt;/a&gt; [232⭐] - QR Code reader plugin by &lt;a href=&quot;https://github.com/villela&quot;&gt;Matheus Villela&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/facundomedica/fast_qr_reader_view&quot;&gt;Fast QR Reader View&lt;/a&gt; [292⭐] - Live multicode reader by &lt;a href=&quot;https://github.com/facundomedica&quot;&gt;Facundo Medica&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Bluetooth / NFC / Beacon&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pauldemarco/flutter_blue&quot;&gt;Blue&lt;/a&gt; [2429⭐] - Bluetooth by &lt;a href=&quot;https://github.com/pauldemarco&quot;&gt;Paul DeMarco&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/loup-v/beacons&quot;&gt;Beacons&lt;/a&gt; [78⭐] - Flutter beacons plugin by &lt;a href=&quot;http://intheloup.io&quot;&gt;Loup&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/matteocrippa/flutter-nfc-reader&quot;&gt;NFC Reader&lt;/a&gt; [428⭐] - NFC reader plugin for iOS and Android by &lt;a href=&quot;https://github.com/matteocrippa&quot;&gt;Matteo Crippa&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pszklarska/beacon_broadcast&quot;&gt;Beacon broadcast&lt;/a&gt; [83⭐] - Library for turning your phone into a beacon by &lt;a href=&quot;https://github.com/pszklarska/&quot;&gt;Paulina Szklarska&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/PhilipsHue/flutter_reactive_ble&quot;&gt;Reactive Ble&lt;/a&gt; [701⭐] - Handles BLE operations for multiple devices by &lt;a href=&quot;https://github.com/PhilipsHue&quot;&gt;Philips Hue&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/okadan/flutter-nfc-manager&quot;&gt;NFC Manager&lt;/a&gt; [235⭐] - Generic NFC plugin for iOS and Android by &lt;a href=&quot;https://github.com/okadan&quot;&gt;Naoki Okada&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Storage&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/tekartik/sqflite&quot;&gt;Sqflite&lt;/a&gt; [2972⭐] - SQLite flutter plugin by &lt;a href=&quot;https://www.linkedin.com/in/alextekartik/&quot;&gt;Alexandre Roux&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/simolus3/drift&quot;&gt;Drift&lt;/a&gt; - Drift is an easy to use, reactive, typesafe persistence library for Dart &amp;amp; Flutter by &lt;a href=&quot;https://github.com/simolus3&quot;&gt;. Simon Binder&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/objectbox/objectbox-dart&quot;&gt;ObjectBox&lt;/a&gt; - On-device database for fast cross-platform Dart object persistence by &lt;a href=&quot;https://github.com/objectbox&quot;&gt;ObjectBox&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Services&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/VictorRancesCode/flutter_dialogflow&quot;&gt;Dialogflow&lt;/a&gt; [212⭐] - Plugin to easily integrate with dialogflow by &lt;a href=&quot;https://github.com/VictorRancesCode/&quot;&gt;Victor Rances&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/OneSignal/OneSignal-Flutter-SDK&quot;&gt;OneSignal&lt;/a&gt; [649⭐] - Push notification service by &lt;a href=&quot;https://github.com/OneSignal&quot;&gt;OneSignal&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pinkfish/flutter_places_dialog&quot;&gt;Place Dialog&lt;/a&gt; [44⭐] - Places picker dialog returning the places to the app by &lt;a href=&quot;https://github.com/pinkfish&quot;&gt;David Bennett&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AppleEducate/app_review&quot;&gt;App Review&lt;/a&gt; [40⭐] - Requesting and Writing Reviews for Android and iOS by &lt;a href=&quot;https://rodydavis.com&quot;&gt;Rody Davis&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/britannio/in_app_review&quot;&gt;In App Review&lt;/a&gt; [360⭐] - Requesting and Writing Reviews for Android, iOS and MacOS by &lt;a href=&quot;https://github.com/britannio&quot;&gt;Britannio Jarrett&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Frameworks&lt;/h2&gt; 
&lt;h3&gt;State management&lt;/h3&gt; 
&lt;h4&gt;Standard&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/felangel/bloc&quot;&gt;Bloc&lt;/a&gt; [12288⭐] - Collection of packages that help implement the BLoC design pattern by &lt;a href=&quot;https://github.com/felangel&quot;&gt;Felix Angelov&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rrousselGit/provider&quot;&gt;Provider&lt;/a&gt; [5230⭐] - State-management library for Flutter by &lt;a href=&quot;https://github.com/rrousselGit&quot;&gt;Remi Rousselet&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rrousselGit/river_pod&quot;&gt;RiverPod&lt;/a&gt; [6922⭐] - Provider, but different by &lt;a href=&quot;https://github.com/rrousselGit&quot;&gt;Remi Rousselet&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/get_it&quot;&gt;Get It&lt;/a&gt; [1426⭐] - Simple direct Service Locator that allows to decouple the interface from a concrete implementation by &lt;a href=&quot;https://twitter.com/Thomasburkhartb&quot;&gt;Thomas Burkhartb&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jonataslaw/getx&quot;&gt;GetX&lt;/a&gt; [11002⭐] - Contextless, State-management &amp;amp; navigation by &lt;a href=&quot;https://github.com/jonataslaw&quot;&gt;Jonny Borges&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mobxjs/mobx.dart&quot;&gt;MobX&lt;/a&gt; [2451⭐] - Supercharge the state-management in your apps with Transparent Functional Reactive Programming (TFRP). Port of MobX from the Js/React land.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rodydavis/signals.dart&quot;&gt;Signals&lt;/a&gt; [658⭐] - Reactive programming made simple. Port of Signals pattern by &lt;a href=&quot;https://github.com/rodydavis&quot;&gt;Rody Davis&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Redux / ELM / Dependency Injection&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/davidmarne/flutter_built_redux&quot;&gt;Built redux&lt;/a&gt; [77⭐] - Automatic subscribing to your redux stores. Based on the built pattern by &lt;a href=&quot;https://github.com/davidmarne&quot;&gt;David Marne&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/johnpryan/redux.dart&quot;&gt;Redux.dart&lt;/a&gt; [521⭐] - Port of Redux to Dart with an ecosystem of middleware, Flutter integrations, and time traveling dev tools by &lt;a href=&quot;https://github.com/johnpryan&quot;&gt;John Ryan&lt;/a&gt; and &lt;a href=&quot;https://gitlab.com/users/brianegan/projects&quot;&gt;Brian Egan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/brianegan/flutter_redux&quot;&gt;Redux&lt;/a&gt; [1653⭐] - Built to work with &lt;a href=&quot;https://github.com/johnpryan/redux.dart&quot;&gt;redux.dart&lt;/a&gt;, utilities that allow you to easily consume a Redux Store to build Widgets.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/google/inject.dart&quot;&gt;Inject&lt;/a&gt; [867⭐] - Compile-time dependency injection by Google.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/google/flutter_flux&quot;&gt;Flux&lt;/a&gt; [376⭐] - Implementation of the Flux framework by Google.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alibaba/fish-redux&quot;&gt;Fish&lt;/a&gt; [7313⭐] - Alibaba Redux implementation.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/async_redux&quot;&gt;Async Redux&lt;/a&gt; [237⭐] - Redux without boilerplate. Allows for both sync and async reducers by &lt;a href=&quot;https://github.com/marcglasberg/&quot;&gt;Marcelo Glasberg&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Widgets&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rrousselGit/flutter_hooks&quot;&gt;Hooks&lt;/a&gt; [3280⭐] - Advanced code sharing between widgets by &lt;a href=&quot;https://github.com/rrousselGit&quot;&gt;Remi Rousselet&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rrousselGit/functional_widget&quot;&gt;Functional widget&lt;/a&gt; [608⭐] - Code generator writing widgets as functions with annotations by &lt;a href=&quot;https://github.com/rrousselGit&quot;&gt;Remi Rousselet&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Data&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zino-app/graphql-flutter&quot;&gt;Graphql&lt;/a&gt; [3267⭐] - Implementation of the GraphQL spec by &lt;a href=&quot;https://github.com/zino-app&quot;&gt;Zino App B.V.&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/DarshanGowda0/GeoFlutterFire&quot;&gt;GeoFlutterFire&lt;/a&gt; [306⭐] - Implementation of GeoFirestore for flutter by &lt;a href=&quot;https://darshann.me/&quot;&gt;Darshan Gowda&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gql-dart/ferry&quot;&gt;Ferry&lt;/a&gt; [627⭐] - Powerful &amp;amp; Extensible GraphQL Client by &lt;a href=&quot;https://github.com/smkhalsa&quot;&gt;Sat Mandir Khalsa&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Backend&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/serverpod/serverpod&quot;&gt;Serverpod&lt;/a&gt; - Write your server-side code and API in Dart.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nitrictech/nitric&quot;&gt;Nitric&lt;/a&gt; [1842⭐] - Open source framework with pluggable deployment by &lt;a href=&quot;https://nitric.io/&quot;&gt;Nitric&lt;/a&gt;..&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dengyin2000/dynamic_widget&quot;&gt;Dynamic Widget&lt;/a&gt; [1630⭐] - Build your dynamic UI with json, and the json format is very similar with flutter widget code by &lt;a href=&quot;https://github.com/dengyin2000&quot;&gt;Denny Deng&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/parse-community/Parse-SDK-Flutter/tree/master/packages/flutter&quot;&gt;Parse for Flutter&lt;/a&gt; [583⭐] Open source backend framework by &lt;a href=&quot;https://parseplatform.org/&quot;&gt;ParsePlatform&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Animation&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/heroine&quot;&gt;Heroine&lt;/a&gt; [?⭐] - The queen of hero transitions by [&lt;a href=&quot;http://whynotmake.it&quot;&gt;whynotmake.it&lt;/a&gt;].&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/motor&quot;&gt;Motor&lt;/a&gt; [?⭐] - Unified motion system for Flutter - physics-based springs and duration-based curves by [&lt;a href=&quot;http://whynotmake.it&quot;&gt;whynotmake.it&lt;/a&gt;]&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jogboms/flutter_spinkit&quot;&gt;SpinKit&lt;/a&gt; [3114⭐] - Animated loading indicators by &lt;a href=&quot;https://twitter.com/jogboms&quot;&gt;Jeremiah Ogbomo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Norbert515/flutter_villains&quot;&gt;Villains&lt;/a&gt; [366⭐] - Page transition animations by &lt;a href=&quot;https://twitter.com/norbertkozsir&quot;&gt;Norbert Kozsir&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aagarwal1012/Animated-Text-Kit&quot;&gt;AnimatedTextKit&lt;/a&gt; [1735⭐] - A collection of cool text animations by &lt;a href=&quot;https://github.com/aagarwal1012/&quot;&gt;Ayush Agarwal&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/biocarl/drawing_animation&quot;&gt;Drawing Animation&lt;/a&gt; [505⭐] - Create drawing line animations based on SVG path data by &lt;a href=&quot;https://twitter.com/cahaucks&quot;&gt;Carl Hauck&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/felixblaschke/simple_animations&quot;&gt;Simple Animations&lt;/a&gt; - Create awesome custom animations easily by &lt;a href=&quot;https://github.com/felixblaschke&quot;&gt;Felix Blaschke&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/efoxTeam/flutter-animation-set&quot;&gt;Flutter-animation-set&lt;/a&gt; [283⭐] - Easy to build an animation set by &lt;a href=&quot;https://github.com/efoxTeam&quot;&gt;efoxTeam&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mobiten/flutter_staggered_animations&quot;&gt;Staggered Animations&lt;/a&gt; [1644⭐] - Easily add staggered animations to your ListView, GridView, Column and Row by &lt;a href=&quot;https://mobiten.com/&quot;&gt;mobiten&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/animate_do&quot;&gt;Animate Do&lt;/a&gt; - Animation package inspired in Animate.css by &lt;a href=&quot;https://twitter.com/Fernando_Her85&quot;&gt;Fernando Herrera&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/creativecreatorormaybenot/funvas&quot;&gt;Funvas&lt;/a&gt; [544⭐] - Create fun &lt;em&gt;time based canvas animations&lt;/em&gt; by &lt;a href=&quot;https://twitter.com/creativemaybeno&quot;&gt;creativecreatorormaybenot&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_animate&quot;&gt;Flutter Animate&lt;/a&gt; [1070⭐] - A performant library that makes it simple to add almost any kind of animated effect by &lt;a href=&quot;https://gskinner.com/&quot;&gt;gskinner&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Testing&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fzyzcjy/flutter_convenient_test&quot;&gt;flutter_convenient_test&lt;/a&gt; [556⭐] - Tests with action history, time travelling, screenshots, rapid re-execution, video recordings, interactive mode by &lt;a href=&quot;https://github.com/fzyzcjy&quot;&gt;fzyzcjy&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leancodepl/patrol&quot;&gt;Patrol&lt;/a&gt; [1131⭐] - Easy-to-learn, powerful UI testing framework eliminating limitations of &lt;code&gt;flutter_test&lt;/code&gt;, &lt;code&gt;integration_test&lt;/code&gt;, and &lt;code&gt;flutter_driver&lt;/code&gt; by &lt;a href=&quot;https://leancode.co&quot;&gt;LeanCode&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Web&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Codelessly/ResponsiveFramework&quot;&gt;Responsive Framework&lt;/a&gt; [1370⭐] - Automatically adapt UI to different screen sizes. Responsiveness made simple by &lt;a href=&quot;https://codelessly.com&quot;&gt;Codelessly&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Experimental&lt;/h2&gt; 
&lt;p&gt;This section contains libraries that take an experimental or unorthodox approach.&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ReinBentdal/styled_widget&quot;&gt;styled_widget&lt;/a&gt; [1327⭐] - Simplifying your widget tree structure by defining widgets using methods by &lt;a href=&quot;https://github.com/ReinBentdal&quot;&gt;Rein Gundersen Bentdal&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Engines&lt;/h2&gt; 
&lt;h3&gt;Rendering&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/roipeker/graphx&quot;&gt;Graphx&lt;/a&gt; [514⭐] - Making drawings and animations extremely simple, inspired by Flash, by &lt;a href=&quot;https://github.com/roipeker&quot;&gt;Roi Peker&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Game&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flame-engine/flame&quot;&gt;Flame&lt;/a&gt; [10193⭐] - Minimalist game engine by &lt;a href=&quot;https://github.com/luanpotter&quot;&gt;Luan Nico&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RafaelBarbosatec/bonfire&quot;&gt;Bonfire&lt;/a&gt; [1384⭐] - Flame engine based game engine for 2D RPG games.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutterkit/zerker&quot;&gt;Zerker&lt;/a&gt; [704⭐] - Lightweight and powerful graphic animation library by &lt;a href=&quot;https://github.com/drawcall&quot;&gt;drawcall&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Open source games&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RedBrogdon/flutterflip&quot;&gt;Flip&lt;/a&gt; [268⭐] - Reversi game by &lt;a href=&quot;https://github.com/RedBrogdon&quot;&gt;Andrew Brogdon&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/anuranBarman/2048&quot;&gt;2048&lt;/a&gt; [361⭐] - 2048 game by &lt;a href=&quot;https://github.com/anuranBarman&quot;&gt;Anuran Barman&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/renancaraujo/trex-flame&quot;&gt;TRex&lt;/a&gt; [7⭐] - Port of the famous Chrome&#39;s Trex game by &lt;a href=&quot;https://github.com/renancaraujo&quot;&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/boeledi/flutter_crush&quot;&gt;Crush&lt;/a&gt; [609⭐] - How to build a Math-3 game, like Candy Crush, Bejeweled by &lt;a href=&quot;https://didierboelens.com&quot;&gt;Didier Boelens&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/kevmoo/slide_puzzle&quot;&gt;Slide Puzzle&lt;/a&gt; [180⭐] - Classic slide (15) puzzle by &lt;a href=&quot;https://github.com/kevmoo&quot;&gt;Kevin Moore&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/boyan01/flutter-tetris&quot;&gt;Tetris&lt;/a&gt; [1648⭐] - Tetris game by &lt;a href=&quot;https://github.com/boyan01&quot;&gt;YangBin&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/vintage/party_flutter&quot;&gt;Party Charades&lt;/a&gt; [209⭐] - Party charades by &lt;a href=&quot;https://github.com/vintage&quot;&gt;Kamil Rykowski&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Float-like-a-dash-Sting-like-a-dart/GhostRigger&quot;&gt;Ghost Rigger&lt;/a&gt; [256⭐] - Ghost Rigger is a cyberpunk inspired puzzle game by &lt;a href=&quot;https://github.com/b099l3&quot;&gt;Iain Smith&lt;/a&gt; and &lt;a href=&quot;https://github.com/ernestoyaquello&quot;&gt;Julio Ernesto Rodríguez Cabañas&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/satyamx64/space_empires&quot;&gt;Space Empires&lt;/a&gt; [101⭐] - A 4X Space themed strategy game by &lt;a href=&quot;https://github.com/satyamx64&quot;&gt;Satyam Sharma&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Game Engine resources&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flame-engine/awesome-flame&quot;&gt;Awesome Flame&lt;/a&gt; [1248⭐] - Curated list of the best Flame games, projects, libraries, tools, tutorials, articles and more by &lt;a href=&quot;https://github.com/flame-engine&quot;&gt;Flame Engine&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Open Source Apps&lt;/h2&gt; 
&lt;h3&gt;Premium&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/2d-inc/HistoryOfEverything&quot;&gt;History Of Everything&lt;/a&gt; [6568⭐] - Animated vertical timeline of humanity by &lt;a href=&quot;https://www.2dimensions.com/&quot;&gt;2D, Inc&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/2d-inc/developer_quest&quot;&gt;Developer Quest&lt;/a&gt; [2982⭐] - Become a tech lead, slay bugs by &lt;a href=&quot;https://www.2dimensions.com/&quot;&gt;2D, Inc&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AppFlowy-IO/appflowy&quot;&gt;AppFlowy&lt;/a&gt; [65821⭐] - Open Source Notion Alternative. You are in charge of your data and customizations. Built with Flutter and Rust by &lt;a href=&quot;https://www.appflowy.io/&quot;&gt;AppFlowy team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/rustdesk/rustdesk&quot;&gt;RustDesk&lt;/a&gt; [99332⭐] - Open source virtual/remote desktop and TeamViewer alternative. Built with Flutter and Rust by &lt;a href=&quot;https://www.rustdesk.com/&quot;&gt;RustDesk team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/spotube&quot;&gt;Spotube&lt;/a&gt; - Open source Spotify client for desktop and mobile by &lt;a href=&quot;https://github.com/KRTirtho&quot;&gt;Kingkor Roy Tirtho&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Top&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutter/samples&quot;&gt;Flutter Team Samples&lt;/a&gt; [18613⭐] - Collection of examples (including maps, json, Material and Cupertino) by the &lt;a href=&quot;https://github.com/orgs/flutter/people&quot;&gt;Flutter team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/alibaba/flutter-common-widgets-app&quot;&gt;Flutter Common Widgets&lt;/a&gt; [23710⭐] - Collection of official widgets demos &amp;amp; docs in chinese to help developers learn quickly by &lt;a href=&quot;https://github.com/alibaba-paimai-frontend&quot;&gt;Alibaba Auction Frontend Team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/efortuna/memechat&quot;&gt;Meme Chat&lt;/a&gt; [543⭐] - Chat app on Flutter, using Firebase, Google Sign In, and device camera integration by a team of Googlers.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/HemantKArya/BloomeeTunes&quot;&gt;BloomeeTunes&lt;/a&gt; [1304⭐] - Multi-Source Music Streaming Application by &lt;a href=&quot;https://github.com/HemantKArya&quot;&gt;HemantKArya&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fablue/lime-flutter&quot;&gt;Lime&lt;/a&gt; [373⭐] - Lime social network by Sebastian Sellmair.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/sergiandreplace/flutter_planets_tutorial&quot;&gt;Planets&lt;/a&gt; [756⭐] - Planet exploration that demonstrate rich UI by &lt;a href=&quot;http://sergiandreplace.com&quot;&gt;Sergi Martínez&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/theankurkedia/NewsBuzz&quot;&gt;NewsBuzz&lt;/a&gt; [599⭐] - Firebase backed news reader using News API by &lt;a href=&quot;https://github.com/theankurkedia&quot;&gt;Ankur Kedia&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/konifar/droidkaigi2018-flutter&quot;&gt;DroidKaigi2018-flutter&lt;/a&gt; [508⭐] - Unofficial conference app for DroidKaigi 2018 Tokyo by &lt;a href=&quot;https://github.com/konifar&quot;&gt;konifar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/iampawan/Flutter-Music-Player&quot;&gt;Music Player&lt;/a&gt; [1761⭐] - Full featured music player by &lt;a href=&quot;https://about.me/imthepk&quot;&gt;Pawan Kumar&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/burhanrashid52/WhatTodo&quot;&gt;WhatTodo&lt;/a&gt; [1250⭐] - Todoist like UI by &lt;a href=&quot;https://about.me/burhanrashid52&quot;&gt;Burhanuddin Rashid&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mdanics/fluttergram&quot;&gt;FlutterGram&lt;/a&gt; [2393⭐] - Complete Instagram based on Firestore &amp;amp; Google Functions by &lt;a href=&quot;https://github.com/mdanics&quot;&gt;MDanics&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Norbert515/BookSearch&quot;&gt;BookSearch&lt;/a&gt; [548⭐] - Digital BookShelf for your reading progress by &lt;a href=&quot;https://github.com/Norbert515&quot;&gt;Norbert515&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aaronoe/FlutterCinematic&quot;&gt;Cinematic&lt;/a&gt; [900⭐] - UI for Movie DB Public API by &lt;a href=&quot;https://github.com/aaronoe&quot;&gt;Aaron Oertel&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/benoitletondor/Beer-Me-Up&quot;&gt;Beer-Me-Up&lt;/a&gt; [494⭐] - Beer tracking nicely designed by &lt;a href=&quot;https://github.com/benoitletondor&quot;&gt;Benoit Letondor&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/trentpiercy/trace&quot;&gt;Trace&lt;/a&gt; [1137⭐] - Modern and powerful crypto portfolio &amp;amp; market explorer by &lt;a href=&quot;https://github.com/trentpiercy&quot;&gt;Trent Piercy&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/huextrat/Taskist&quot;&gt;Taskist&lt;/a&gt; [1051⭐] - Taskist is a ToDo List app for Task Management by &lt;a href=&quot;https://github.com/huextrat&quot;&gt;Hugo EXTRAT&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bluemix/tourism-demo&quot;&gt;Tourism&lt;/a&gt; [305⭐] - Tourism app based on redux w/ animations &amp;amp; i18n by &lt;a href=&quot;https://github.com/bluemix/tourism-demo&quot;&gt;blueMix&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/LinwoodCloud/Butterfly&quot;&gt;Linwood Butterfly&lt;/a&gt; [1463⭐] - Powerful note taking app and an alternative to OneNote by &lt;a href=&quot;https://github.com/CodeDoctorDE&quot;&gt;CodeDoctorDE&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/matthewtory/trinity-orientation-2018&quot;&gt;Trinity Orientation @ Univ Toronto&lt;/a&gt; [618⭐] - Orientation week at Trinity College, U of T by &lt;a href=&quot;https://github.com/matthewtory&quot;&gt;Matthew Tory&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/DrPaulT/flutter-engine-test&quot;&gt;Transform Widget&lt;/a&gt; - Image widgets as 3D game engine sprites by &lt;a href=&quot;https://github.com/DrPaulT&quot;&gt;Paul Thomas&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/aleksanderwozniak/deer&quot;&gt;Deer&lt;/a&gt; [459⭐] - Minimalist Todo Planner built using BLoC pattern by &lt;a href=&quot;https://github.com/aleksanderwozniak&quot;&gt;Aleksander Woźniak&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jogboms/tailor_made&quot;&gt;TailorMade&lt;/a&gt; [334⭐] - Managing a Fashion designer&#39;s daily routine using a mixture of ReBLoC w/ Firebase Cloud Store &amp;amp; Functions by &lt;a href=&quot;https://twitter.com/jogboms&quot;&gt;Jeremiah Ogbomo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/InvertedX/instory&quot;&gt;Instory&lt;/a&gt; [206⭐] - Instgram story downloader with a beautiful UI &lt;a href=&quot;https://twitter.com/_sarath_kumar&quot;&gt;Sarath&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jesusrp98/spacex-go&quot;&gt;Spacex-Go&lt;/a&gt; [913⭐] - Simple yet powerful, open-source SpaceX launch tracker. &lt;a href=&quot;https://twitter.com/jesusrp98&quot;&gt;jesusrp98&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/pinkeshdarji/SuperHeroInteraction&quot;&gt;Superhero Interaction&lt;/a&gt; [220⭐] - Cool Superhero interaction animation by &lt;a href=&quot;https://github.com/pinkeshdarji&quot;&gt;Pinkesh Darji&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flschweiger/reply&quot;&gt;Reply&lt;/a&gt; [558⭐] - &#39;Reply&#39; Material Design case study by &lt;a href=&quot;https://github.com/flschweiger&quot;&gt;Frederik Schweiger&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AmitJoki/Enigma&quot;&gt;Enigma&lt;/a&gt; - Privacy chat with end-to-end encryption by &lt;a href=&quot;https://github.com/AmitJoki&quot;&gt;AmitJoki&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KarimElghamry/chillify&quot;&gt;Chillify&lt;/a&gt; - Fancy music app made with Provider and Bloc pattern by &lt;a href=&quot;https://github.com/KarimElghamry&quot;&gt;Karim Elghamry&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/scitbiz/flutter_pokedex&quot;&gt;Pokedex&lt;/a&gt; - Pokedex app with beautiful UI and smooth animation by &lt;a href=&quot;https://github.com/scitbiz&quot;&gt;Hung Pham&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/janoodleFTW/timy-messenger&quot;&gt;Timy Messenger&lt;/a&gt; [2107⭐] - Group messaging app with a focus on organizing events by &lt;a href=&quot;https://github.com/miquelbeltran&quot;&gt;Miguel Beltran&lt;/a&gt; and &lt;a href=&quot;https://github.com/fheinfling&quot;&gt;Franz Heinfling&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/GitJournal/GitJournal&quot;&gt;GitJournal&lt;/a&gt; [3893⭐] - Journaling your data in a Git Repo by &lt;a href=&quot;https://github.com/vHanda&quot;&gt;Vishesh Handa&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/authpass/authpass&quot;&gt;AuthPass&lt;/a&gt; [2471⭐] - Keepass compatible password manager for mobile and desktop by &lt;a href=&quot;https://github.com/hpoul&quot;&gt;hpoul&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/TheAlphamerc/flutter_twitter_clone&quot;&gt;Fwitter&lt;/a&gt; [4157⭐] - Full Twitter clone using Firebase solution by &lt;a href=&quot;https://github.com/TheAlphamerc&quot;&gt;Sonu Sharma&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/robertodoering/harpy&quot;&gt;Harpy&lt;/a&gt; [2084⭐] - Feature rich Twitter client by &lt;a href=&quot;https://github.com/robertodoering&quot;&gt;Roberto Doering&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ruskakimov/mooltik&quot;&gt;Mooltik&lt;/a&gt; [221⭐] - Animation app for making cartoons by &lt;a href=&quot;https://github.com/ruskakimov&quot;&gt;Rustem Kakimov&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/spotube&quot;&gt;Spotube&lt;/a&gt; [41650⭐] - A lightweight free Spotify crossplatform-client with no Spotify premium account requirement by &lt;a href=&quot;https://github.com/KRTirtho&quot;&gt;KRTirtho&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/JideGuru/flutter_drawing_board&quot;&gt;Let&#39;s Draw&lt;/a&gt; [329⭐] - A simple drawing app made by &lt;a href=&quot;https://github.com/JideGuru&quot;&gt;JideGuru&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/mateusz-bak/openreads-android&quot;&gt;Openreads&lt;/a&gt; [1303⭐] - A simple privacy oriented mobile books tracker using Open Library API by &lt;a href=&quot;https://github.com/mateusz-bak&quot;&gt;mateusz-bak&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Utilities&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/franzsilva/flutter_launcher_icons&quot;&gt;Launcher Icons&lt;/a&gt; - Generate your launcher icons easily by &lt;a href=&quot;https://github.com/MarkOSullivan94&quot;&gt;Mark O&#39;Sullivan&lt;/a&gt; and &lt;a href=&quot;https://github.com/franzsilva&quot;&gt;Franz Silva&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;http://fluttericon.com/&quot;&gt;FlutterIcon&lt;/a&gt; [438⭐] - Icon set generator by &lt;a href=&quot;https://github.com/ilikerobots&quot;&gt;Mike Hoolehan&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leoafarias/fvm&quot;&gt;FVM&lt;/a&gt; [5191⭐] - Flutter Version Management: A simple cli to manage Flutter SDK versions.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/TatsuUkraine/dart_environment_config&quot;&gt;Environment Configuration&lt;/a&gt; [93⭐] - CLI tool to generate &lt;code&gt;.env&lt;/code&gt; configurations for application environments by &lt;a href=&quot;https://github.com/TatsuUkraine&quot;&gt;TatsuUkraine&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/AngeloAvv/flutter_flavorizr&quot;&gt;Flutter Flavorizr&lt;/a&gt; [533⭐] - CLI utility to easily generate flavors for Android and iOS in less than 3 minutes by &lt;a href=&quot;https://github.com/AngeloAvv&quot;&gt;Angelo Cassano&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/westracer/fontify&quot;&gt;Fontify&lt;/a&gt; [107⭐] - CLI tool to convert SVG icons to OTF font and generate Flutter-compatible class by &lt;a href=&quot;https://github.com/westracer&quot;&gt;Igor Kharakhordin&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/FlutterGen/flutter_gen&quot;&gt;FlutterGen&lt;/a&gt; [1564⭐] - Assets code generator for your images, fonts, colors, etc — Get rid of String-based APIs.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/VeryGoodOpenSource/very_good_cli&quot;&gt;Very Good Cli&lt;/a&gt; [2304⭐] - Very Good Command Line Interface for Dart created by &lt;a href=&quot;https://github.com/VeryGoodOpenSource&quot;&gt;Very Good Ventures&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leoafarias/sidekick&quot;&gt;Flutter Sidekick&lt;/a&gt; [1673⭐] - Simple app to make Flutter development more delightful by &lt;a href=&quot;https://github.com/leoafarias&quot;&gt;Leo Farias&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/dart-code-checker/dart-code-metrics&quot;&gt;Dart Code Metrics&lt;/a&gt; [863⭐] - Additional linter which reports code metrics, checks for anti-patterns and provides additional rules for the Dart analyzer by &lt;a href=&quot;https://github.com/dart-code-checker&quot;&gt;Dart Code Checker team&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/zeshuaro/appainter&quot;&gt;Appainter&lt;/a&gt; [721⭐] - A material theme editor and generator for Flutter by &lt;a href=&quot;https://github.com/zeshuaro&quot;&gt;Joshua Tang&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/invertase/melos&quot;&gt;Melos&lt;/a&gt; [1382⭐] - Manage projects with multiple packages, automated versioning, changelogs &amp;amp; publishing via Conventional Commits by &lt;a href=&quot;https://github.com/invertase&quot;&gt;Invertase&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;VSCode&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marketplace.visualstudio.com/items?itemName=Nash.awesome-flutter-snippets&quot;&gt;Awesome Snippets&lt;/a&gt; - Collection of commonly used classes and methods by &lt;a href=&quot;https://twitter.com/Nash0x7E2&quot;&gt;Nash&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marketplace.visualstudio.com/items?itemName=gornivv.vscode-flutter-files&quot;&gt;Flutter Files&lt;/a&gt; - Quick generation for BLoC templates files by context menu by &lt;a href=&quot;https://github.com/gorniv&quot;&gt;Gorniv&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://marketplace.visualstudio.com/items?itemName=localizely.flutter-intl&quot;&gt;Flutter Intl&lt;/a&gt; - i18n binding from arb files by &lt;a href=&quot;https://twitter.com/localizely&quot;&gt;Localizely&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;IntelliJ / Android Studio&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/marius-h/flutter_enhancement_suite&quot;&gt;Enhancement_Suite&lt;/a&gt; [289⭐] - Search for pub.dev libraries, update version, Bloc, Snippet, etc you&#39;re covered by &lt;a href=&quot;https://github.com/marius-h&quot;&gt;Marius Höfler&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://plugins.jetbrains.com/plugin/13666-flutter-intl&quot;&gt;Flutter Intl&lt;/a&gt; - 18n binding from arb files by &lt;a href=&quot;https://twitter.com/localizely&quot;&gt;Localizely&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Desktop&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/google/flutter-desktop-embedding&quot;&gt;Desktop Embedding&lt;/a&gt; [7090⭐] - Desktop implementations of the Flutter embedding API by Google.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/go-flutter-desktop/go-flutter&quot;&gt;Golang Desktop Embedder&lt;/a&gt; [5929⭐] - Golang embedder for desktop by &lt;a href=&quot;https://github.com/pchampio&quot;&gt;Pierre Champion&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/nativeshell/nativeshell&quot;&gt;Native Shell&lt;/a&gt; [658⭐] - Experimental embedder for Flutter by &lt;a href=&quot;https://twitter.com/matejknopp&quot;&gt;Matej Knopp&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/gliheng/flutter-rs&quot;&gt;Rust Desktop Embedder&lt;/a&gt; [2116⭐] - Rust embedder for desktop by &lt;a href=&quot;https://github.com/gliheng&quot;&gt;juju&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bitsdojo/bitsdojo_window&quot;&gt;bitsdojo_window&lt;/a&gt; 
  &lt;!--bitsdojo/bitsdojo_window--&gt; - Customize windows owner-drawn chrome by &lt;a href=&quot;https://github.com/bitsdojo&quot;&gt;BitsDojo&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ardera/flutter-pi&quot;&gt;Raspberry Pi Embedder&lt;/a&gt; [1848⭐] - Light-weight Embedder for Raspberry Pi by &lt;a href=&quot;https://github.com/ardera&quot;&gt;Hannes Winkler&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bdlukaa/fluent_ui&quot;&gt;Fluent UI&lt;/a&gt; [3305⭐] - Microsoft&#39;s Fluent Design System in Flutter by &lt;a href=&quot;https://twitter.com/bdlukaadev&quot;&gt;Bruno D&#39;Luka&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/GroovinChip/macos_ui&quot;&gt;MacOS UI&lt;/a&gt; [2076⭐] - Widgets and themes implementing the current macOS design language by &lt;a href=&quot;https://twitter.com/GroovinChip&quot;&gt;Groovin Chip&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ubuntu/yaru.dart&quot;&gt;Ubuntu Yaru&lt;/a&gt; [347⭐] - Distinct look and feel of the Ubuntu Desktop by &lt;a href=&quot;https://github.com/ubuntu&quot;&gt;Ubuntu&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/leanflutter/awesome-flutter-desktop&quot;&gt;Awesome Flutter Desktop&lt;/a&gt; [1658⭐] - A curated list of awesome things related to Flutter desktop by &lt;a href=&quot;https://github.com/leanflutter&quot;&gt;LeanFlutter&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Podcasts&lt;/h2&gt; 
&lt;h3&gt;English&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://open.spotify.com/show/2qJVeu47e2eAum4j7lxXXv?si=d26QVJQsSRyRHeybfL_01Q&quot;&gt;It&#39;s all widgets! Flutter podcast&lt;/a&gt; - by &lt;a href=&quot;https://twitter.com/hillelcoren&quot;&gt;Hillel Coren&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Portuguese&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://open.spotify.com/show/4AlxqGkkrqe0mfIx3Mi7Xt?si=1eC0a22MR1OkEAT7HErT-A&quot;&gt;Universo Flutter&lt;/a&gt; - by &lt;a href=&quot;http://deandreamatias.com/&quot;&gt;Matias de Andrea&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Spanish&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://open.spotify.com/show/3QUTYR6jspNxHK8akJFxYf?si=MZtgjIMyTi6-WgN9Go6vZQ&quot;&gt;Código Flutter&lt;/a&gt; - by &lt;a href=&quot;https://guillermogarcia.es/&quot;&gt;Guillermo García&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Russian&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://open.spotify.com/show/5qc1VFD4pkJlUYZBVTOFCI?si=OWn7VCELRO2QV03Gi2u8nA&amp;amp;nd=1&quot;&gt;Flutter Dev Podcast&lt;/a&gt; - by &lt;a href=&quot;https://twitter.com/saturovv&quot;&gt;Eugene Saturov&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Bonus&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://itsallwidgets.com&quot;&gt;It&#39;s All Widgets!&lt;/a&gt; - Open list of published apps by &lt;a href=&quot;https://twitter.com/hillelcoren&quot;&gt;Hillel Coren&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/ThomasBurkhartB&quot;&gt;Thomas Burkhart&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/devangelslondon&quot;&gt;Simon Lightfoot&lt;/a&gt; and &lt;a href=&quot;https://twitter.com/scottstoll2017&quot;&gt;Scott Stoll&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/jpnurmi/awesome-flutter-linux&quot;&gt;Awesome Flutter Linux&lt;/a&gt; - A curated list of awesome Linux-specific Flutter packages and projects by &lt;a href=&quot;https://twitter.com/jpnurmi&quot;&gt;J-P Nurmi&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Fun&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=sIIgtClYq0s&quot;&gt;The One&lt;/a&gt; [461👍]&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Hardware&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/bus710/matrix2&quot;&gt;Matrix2&lt;/a&gt; - Sense Hat&#39;s LED matrix control game by &lt;a href=&quot;https://github.com/bus710&quot;&gt;bus710&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Guide &amp;amp; Interviews&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/whatsupcoders/Flutter-Interview-Questions&quot;&gt;Interview Questions&lt;/a&gt; - List of helpful questions you can use to interview potential candidates by &lt;a href=&quot;https://github.com/whatsupcoders/Whatsupcoders-flutter&quot;&gt;Whatsupcoders&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-community/intl-flutter-starter-kit-18415e739fb6&quot;&gt;The International Flutter Starter Kit&lt;/a&gt; - Guide by the experts by &lt;a href=&quot;https://twitter.com/BeyzaSunayGler1&quot;&gt;Beyza Sunay Guler&lt;/a&gt; &amp;amp; &lt;a href=&quot;https://twitter.com/__nawalhmw&quot;&gt;Nawal Alhamwi&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://roadmap.sh/flutter&quot;&gt;Roadmap.sh/flutter&lt;/a&gt; - A community curated flutter developer learning roadmap from the 6th most starred GitHub project.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Community&lt;/h2&gt; 
&lt;h3&gt;Presentation material&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://drive.google.com/drive/folders/1GDGdQ0ghrxTNTx6aZLT41eV5sPZvV7bU&quot;&gt;Logo&lt;/a&gt; - Logo for stickers impressions.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Communication&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitter.im/flutter/flutter&quot;&gt;Gitter&lt;/a&gt; - Exchange channel.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.reddit.com/r/FlutterDev/&quot;&gt;r/FlutterDev&lt;/a&gt; - Reddit community by &lt;a href=&quot;https://www.reddit.com/user/JaapVermeulen&quot;&gt;u/JaapVermeulen&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://discord.gg/N7Yshp4&quot;&gt;Discord&lt;/a&gt; - Discord server to discuss and get help by &lt;a href=&quot;https://twitter.com/AndrewPritykin&quot;&gt;Pritykin&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity&quot;&gt;Flutter Community&lt;/a&gt; - Central place for community made packages.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/OpenFlutter&quot;&gt;OpenFlutter&lt;/a&gt; - Make it easier 让 Flutter 更简单.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://hashnode.com/n/flutter&quot;&gt;Hashnode&lt;/a&gt; - Read and write posts, participate in discussions or ask questions.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h4&gt;Misc&lt;/h4&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutterevents.com&quot;&gt;Flutter Events&lt;/a&gt; - An open list of Flutter events by &lt;a href=&quot;https://twitter.com/hillelcoren&quot;&gt;@hillelcoren&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutterx.com&quot;&gt;FlutterX&lt;/a&gt; - Searchable list of resources by &lt;a href=&quot;https://twitter.com/hillelcoren&quot;&gt;Hillel Coren&lt;/a&gt;.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇦🇴 Angola&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://facebook.com/groups/556888664681938&quot;&gt;Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://facebook.com/Flutter-Angola-2076395262380886/&quot;&gt;Page&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/AngolaFlutter&quot;&gt;Page&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇦🇺 Australia&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;https://gdg-sydney.slack.com&quot;&gt;GDG Sydney&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/gdgsydney&quot;&gt;GDG Sydney&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/FlutterSydney&quot;&gt;Flutter Sydney&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;Bangladesh&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.facebook.com/groups/flutter.bangladesh/&quot;&gt;Facebook Group&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇧🇷 Brazil&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;https://flutterbr.slack.com&quot;&gt;Flutter Brasil&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Medium &lt;a href=&quot;https://medium.com/flutter-comunidade-br&quot;&gt;Flutter Comunidade BR&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/br_flutter&quot;&gt;Flutter Comunidade BR&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/flutter-sp&quot;&gt;São Paulo&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.flutterparainiciantes.com.br&quot;&gt;Flutter para iniciantes&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;cm Cameroon&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/fluttercm&quot;&gt;Flutter Cameroon&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/fluttercameroon&quot;&gt;Flutter &amp;amp; Dart Community CM&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇨🇦 Canada&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/FlutterToronto&quot;&gt;Toronto&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/FlutterMontreal&quot;&gt;Montreal&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/FlutterCalgary&quot;&gt;Calgary&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇨🇮 Côte d&#39;Ivoire (Ivory Coast)&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://web.facebook.com/flutterci/&quot;&gt;Page&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://web.facebook.com/groups/1725273507587759/&quot;&gt;Group&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇩🇰 Denmark&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/Flutter-Developers-Denmark/&quot;&gt;Denmark&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇪🇬 Egypt&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.facebook.com/groups/FlutterEgypt/&quot;&gt;Facebook&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/flutter-nyc/&quot;&gt;Egypt&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://x.com/flutteregypt&quot;&gt;X.com&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇪🇹 Ethiopia&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/flutter_forum/&quot;&gt;Telegram&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇫🇷 France&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/fr-FR/Flutter-Bordeaux&quot;&gt;Bordeaux&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/fr-FR/Flutter-Lille&quot;&gt;Lille&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/fr-FR/Flutter-Paris&quot;&gt;Paris&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/fr-FR/Flutter-Rennes&quot;&gt;Rennes&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/fr-FR/flutter-nantes/&quot;&gt;Nantes&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/FlutterFrance&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://linktr.ee/flutter_france&quot;&gt;Slack&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.flutter-digest.com/&quot;&gt;Newsletter Flutter Digest&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇩🇪 Germany&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/flutter-berlin/&quot;&gt;Berlin&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/flutter-school/&quot;&gt;Düsseldorf&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/Karlsruhe-Flutter-Meetup/&quot;&gt;Karlsruhe&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/Flutter-Hamburg/&quot;&gt;Hamburg&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/Flutter-Stuttgart/&quot;&gt;Stuttgart&lt;/a&gt; - &lt;a href=&quot;https://www.meetup.com/Flutter-Munich&quot;&gt;Munich&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/flutterBerlin&quot;&gt;Flutter Berlin&lt;/a&gt; - &lt;a href=&quot;https://twitter.com/flutter_school&quot;&gt;Düsseldorf&lt;/a&gt; - &lt;a href=&quot;https://twitter.com/FlutterMunich&quot;&gt;Munich&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;https://flutterberlin.slack.com/join/shared_invite/enQtMzQ1NDI0NjU4Mjc5LWVjOTg0NmUxZmU4YzZjZjFkMWNjYWYyYTI5NjMyZWE5MDZjNDM0YzgyNWQyM2EzM2E0NDE4ZmQyMzQyMzRlNjI&quot;&gt;Flutter Berlin&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;LinkedIn &lt;a href=&quot;https://www.linkedin.com/company/Flutter-Munich&quot;&gt;Munich&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇬🇷 Greece&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/Athens-Flutter-Group/&quot;&gt;Athens&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;https://join.slack.com/t/fluttergr/shared_invite/enQtNzQwODM2NzIxOTg0LWFjNWYxYzkyMTdmYWQ4ZWYyMWI2YjcyOTI4YzAzYjY2Nzk3OWNkMTkwZGRjNjRiMGFlNzgyOGRhMmEyZTQ3MmM&quot;&gt;Flutter GR&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇮🇹 Italy&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/flutteritdevs&quot;&gt;Flutter Italia Developers&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Website &lt;a href=&quot;https://flutteritalia.dev&quot;&gt;flutteritalia.dev&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇮🇳 India&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/flutterindia&quot;&gt;Flutter India 🇮🇳&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇮🇱 Israel&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://www.facebook.com/groups/2779846762051712&quot;&gt;Flutter Israel Developers&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇮🇩 Indonesia&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/flutter_id&quot;&gt;Flutter Indonesia&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇮🇷 Iran&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/persian_flutter&quot;&gt;Persian Flutter&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇯🇵 Japan&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/Tokyo-Flutter/&quot;&gt;Tokyo Flutter Developers&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇰🇪 Kenya&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/KenyaFlutterDev/&quot;&gt;Flutter Developers Kenya&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/KenyaFlutterDev/&quot;&gt;Flutter Developers Kenya&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇰🇷 Korea&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/ko-KR/Flutter-Korea/&quot;&gt;Flutter Korea&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://www.facebook.com/groups/flutterkorea/&quot;&gt;Flutter Korea User Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;http://slack.gdg.kr/&quot;&gt;GDG Korea #flutter channel&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇲🇾 Malaysia&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/flutterdevmalaysia&quot;&gt;Flutter/Dart Dev Malaysia&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇳🇬 Nigeria&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Slack &lt;a href=&quot;https://devcenter-square-slack.herokuapp.com&quot;&gt;DevCenter Square&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Telegram &lt;a href=&quot;https://t.me/joinchat/PAH0fVA0l7F_zMM537lo9w&quot;&gt;FlutterLagos&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/FlutterLagos&quot;&gt;FlutterLagos&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇵🇰 Pakistan&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.facebook.com/groups/FlutterPK/&quot;&gt;Facebook Group&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇵🇭 Philippines&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutter.ph/&quot;&gt;Website&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/flutterph/&quot;&gt;Meetup&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/flutter_ph&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://web.facebook.com/flutterphilippines/&quot;&gt;Facebook Page&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://web.facebook.com/groups/flutterphilippines/&quot;&gt;Facebook Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutterph&quot;&gt;Github&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇵🇱 Poland&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.facebook.com/groups/2228619364094561/about/&quot;&gt;Flutter Developers Poland Facebook Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;http://bit.ly/flutter-pl-slack&quot;&gt;Flutter Poland Slack workspace&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/Flutter-Warsaw/&quot;&gt;Flutter Warsaw Meetup&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/flutterwarsaw&quot;&gt;Flutter Warsaw Twitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/channel/UCO7yMprO8cFwV4QnuhTMVlQ&quot;&gt;Flutter Warsaw YouTube Channel&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/poznan-flutter-developers/&quot;&gt;Poznan Flutter Developer Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/Flutter-Wroc%C5%82aw/&quot;&gt;Flutter Wrocław Meetup&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/pl-PL/Flutter-Tricity/&quot;&gt;Tricity&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/FlutterTricity/&quot;&gt;Tricity&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇵🇹 Portugal&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/flutterportugal&quot;&gt;Meetup&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇵🇪 Peru&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Facebook &lt;a href=&quot;https://www.facebook.com/groups/flutterperu/&quot;&gt;Flutter Peru Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://meetup.com/Flutter-Peru/&quot;&gt;Flutter Peru&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter &lt;a href=&quot;https://twitter.com/FlutterPeru&quot;&gt;Flutter Peru&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇷🇺 Russia&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/rudart&quot;&gt;Telegram&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/ohmyflutter&quot;&gt;Telegram - Oh, my Flutter&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/flutter-voronezh/&quot;&gt;Flutter Voronezh&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇪🇸 Spain&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutter.madrid&quot;&gt;Madrid Community&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/es-ES/Flutter-Madrid&quot;&gt;Madrid Meetup&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/FlutterMadrid&quot;&gt;Madrid Twitter&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇱🇰 Sri Lanka&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://gitter.im/Colombo-Flutter-Community&quot;&gt;Gitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://fluttercmb.slack.com/&quot;&gt;Slack&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/Colombo-Flutter-Meetup&quot;&gt;Community GitHub Page&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.facebook.com/flutterCMB/&quot;&gt;Facebook Page&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇹🇷 Turkey&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/flutter_turkiye&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://medium.com/flutter-t%C3%BCrkiye/&quot;&gt;Medium&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/FlutterTurk&quot;&gt;Telegram Channel&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/FlutterTR&quot;&gt;Telegram Group&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://bit.ly/flutterTR&quot;&gt;Slack&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/flutterturkey&quot;&gt;Github&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇺🇦 Ukraine&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/artflutter&quot;&gt;Telegram&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/ArtFlutter&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇬🇧 United Kingdom&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://flutterldn.dev/&quot;&gt;Flutter London&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/FlutterLDN/&quot;&gt;London&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/FlutterLDN&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/channel/UC_a-vGdkAIRMKT1zzZ4I2ag&quot;&gt;YouTube&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇺🇸 United States&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/Flutter-Chicago/&quot;&gt;Chicago&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Meetup [Washington DC] (&lt;a href=&quot;https://www.meetup.com/DCFlutter/&quot;&gt;https://www.meetup.com/DCFlutter/&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/flutter-nyc/&quot;&gt;NYC&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🏴 Kurdistan&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;Meetup &lt;a href=&quot;https://www.meetup.com/Flutter-Kurdistan/&quot;&gt;Kurdistan&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇳🇴 Norway&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/Oslo-Flutter-Dart-Meetup/&quot;&gt;Meetup Oslo&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.meetup.com/Flutter-Stavanger/&quot;&gt;Meetup Stavanger&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://twitter.com/flutterNorway&quot;&gt;Twitter&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h3&gt;🇺🇿 Uzbekistan&lt;/h3&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://t.me/dartdevuz&quot;&gt;Telegram&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://creativecommons.org/publicdomain/zero/1.0/&quot;&gt;&lt;img src=&quot;http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg?sanitize=true&quot; alt=&quot;CC0&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;To the extent possible under law, &lt;a href=&quot;https://www.linkedin.com/in/robert-felker/&quot;&gt;Robert Felker&lt;/a&gt; has waived all copyright and related or neighboring rights to this work.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/90528830/018a6400-d879-11e9-92b4-492c61d9bc32" medium="image" />
      
    </item>
    
    <item>
      <title>KRTirtho/spotube</title>
      <link>https://github.com/KRTirtho/spotube</link>
      <description>&lt;p&gt;🎧 Open source music streaming app! Available for both desktop &amp; mobile!&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt; 
 &lt;img width=&quot;600&quot; src=&quot;https://raw.githubusercontent.com/KRTirtho/spotube/master/assets/branding/spotube_banner.png&quot; alt=&quot;Spotube Logo&quot; /&gt; 
 &lt;p&gt;A cross-platform extensible open-source music streaming platform.&lt;br /&gt; Bring your own music metadata/playlist/audio-source with plugins created by community or by yourself. A small step towards the decentralized music streaming era!&lt;/p&gt; 
 &lt;p&gt;Btw it&#39;s not just another Electron app 😉&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://spotube.krtirtho.dev&quot;&gt;&lt;img alt=&quot;Visit the website&quot; height=&quot;56&quot; src=&quot;https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/documentation/website_vector.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://discord.gg/uJ94vxB6vg&quot;&gt;&lt;img alt=&quot;Discord Server&quot; height=&quot;56&quot; src=&quot;https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/social/discord-plural_vector.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://patreon.com/krtirtho&quot;&gt;&lt;img alt=&quot;Support me on Patron&quot; height=&quot;56&quot; src=&quot;https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/donate/patreon-singular_vector.svg?sanitize=true&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://www.buymeacoffee.com/krtirtho&quot;&gt;&lt;img alt=&quot;Buy me a Coffee&quot; height=&quot;56&quot; src=&quot;https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/donate/buymeacoffee-singular_vector.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://news.ycombinator.com/item?id=39066136&quot;&gt;&lt;img src=&quot;https://hackerbadge.vercel.app/api?id=39066136&amp;amp;type=dark&quot; alt=&quot;HackerNews&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href=&quot;https://opencollective.com/spotube&quot;&gt;&lt;img src=&quot;https://opencollective.com/spotube/donate/button.png?color=blue&quot; alt=&quot;Donate to our Open Collective&quot; height=&quot;45&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;hr /&gt; 
 &lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/KRTirtho/spotube/master/assets/branding/spotube-screenshot.png&quot; alt=&quot;Spotube Desktop&quot; /&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/KRTirtho/spotube/master/assets/branding/mobile-screenshots/combined.jpg&quot; alt=&quot;Spotube Mobile&quot; /&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;h2&gt;🌃 Features&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;🧩 Plugin powered, supports any platform or custom music service through plugins.&lt;/li&gt; 
 &lt;li&gt;🗺️ Community driven plugins for popular platforms or create your own.&lt;/li&gt; 
 &lt;li&gt;⬇️ Freely downloadable tracks with tagged metadata.&lt;/li&gt; 
 &lt;li&gt;🖥️ 📱 Cross-platform support.&lt;/li&gt; 
 &lt;li&gt;🪶 Small size &amp;amp; less data usage.&lt;/li&gt; 
 &lt;li&gt;🕒 Time synced lyrics regardless of the plugin support.&lt;/li&gt; 
 &lt;li&gt;✋ No telemetry, diagnostics or user data collection.&lt;/li&gt; 
 &lt;li&gt;🚀 Native performance.&lt;/li&gt; 
 &lt;li&gt;📖 Open source/libre software.&lt;/li&gt; 
 &lt;li&gt;🔉 Playback control is done locally, not on the server.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;📜 ⬇️ Installation guide&lt;/h2&gt; 
&lt;p&gt;New versions usually release every 3-4 months.&lt;br /&gt; This handy table lists all the methods you can use to install Spotube:&lt;/p&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;th&gt;Platform&lt;/th&gt; 
   &lt;th&gt;Package/Installation Method&lt;/th&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-windows-x86_64-setup.exe&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Windows Download&quot; src=&quot;https://get.todoist.help/hc/article_attachments/4403191721234/WindowsButton.svg?sanitize=true&quot; /&gt; &lt;/a&gt; &lt;/td&gt;
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;MacOS&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-macos-universal.dmg&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;MacOS Download&quot; src=&quot;https://memory-map.com/wp-content/uploads/download-mac-OS-01.svg?sanitize=true&quot; /&gt; &lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Android&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-android-all-arch.apk&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;APK download&quot; src=&quot;https://user-images.githubusercontent.com/114044633/223920025-83687de0-e463-4c5d-8122-e06e4bb7d40c.png&quot; /&gt; &lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://f-droid.org/packages/oss.krtirtho.spotube&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Download from F-Droid&quot; src=&quot;https://user-images.githubusercontent.com/61944859/174589876-bace24c0-b3fd-4c4a-bdb4-6fa82b5853ec.png&quot; /&gt; &lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
  &lt;/tr&gt;
  &lt;tr&gt; 
   &lt;td&gt;iOS&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-iOS.ipa&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Download iOS IPA&quot; src=&quot;https://github.com/user-attachments/assets/3e50d93d-fb39-435c-be6b-337745f7c423&quot; /&gt; &lt;/a&gt; &lt;br /&gt; 
    &lt;blockquote style=&quot;color:red&quot;&gt;
      *iPA file only. Requires sideloading with 
     &lt;a href=&quot;https://altstore.io/&quot;&gt;AltStore&lt;/a&gt; or similar tools. 
    &lt;/blockquote&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Flatpak&lt;/td&gt; 
   &lt;td&gt; &lt;p&gt;&lt;code&gt;flatpak install com.github.KRTirtho.Spotube&lt;/code&gt;&lt;/p&gt; &lt;a href=&quot;https://flathub.org/apps/details/com.github.KRTirtho.Spotube&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Download on Flathub&quot; src=&quot;https://flathub.org/assets/badges/flathub-badge-en.png&quot; /&gt; &lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;AppImage&lt;/td&gt; 
   &lt;td&gt;AppImage&#39;s lacking stability led to it&#39;s temporary removal. More information at https://github.com/KRTirtho/spotube/issues/1082&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Debian/Ubuntu&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-linux-x86_64.deb&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Debian/Ubuntu Download&quot; src=&quot;https://user-images.githubusercontent.com/61944859/169097994-e92aff78-fd75-4c93-b6e4-f072a4b5a7ed.png&quot; /&gt; &lt;/a&gt; &lt;p&gt;Then run: &lt;code&gt;sudo apt install ./Spotube-linux-x86_64.deb&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Arch/Manjaro&lt;/td&gt; 
   &lt;td&gt; &lt;p&gt;With pamac: &lt;code&gt;sudo pamac install spotube-bin&lt;/code&gt;&lt;/p&gt; &lt;p&gt;With yay: &lt;code&gt;yay -Sy spotube-bin&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Fedora/OpenSuse&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest/download/Spotube-linux-x86_64.rpm&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Fedora/OpenSuse Download&quot; src=&quot;https://user-images.githubusercontent.com/61944859/223638350-5926b9da-04d6-4edd-931d-ad533e4ff058.png&quot; /&gt; &lt;/a&gt; &lt;p&gt;For Fedora: &lt;code&gt;sudo dnf install ./Spotube-linux-x86_64.rpm&lt;/code&gt;&lt;/p&gt; &lt;p&gt;For OpenSuse: &lt;code&gt;sudo zypper in ./Spotube-linux-x86_64.rpm&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Linux (tarball)&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/latest&quot;&gt; &lt;img width=&quot;220&quot; alt=&quot;Tarball Download&quot; src=&quot;https://user-images.githubusercontent.com/61944859/169456985-e0ba1fd4-10e8-4cc0-ab94-337acc6e0295.png&quot; /&gt; &lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Macos - &lt;a href=&quot;https://brew.sh&quot;&gt;Homebrew&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;pre lang=&quot;bash&quot;&gt;
brew tap krtirtho/apps
brew install --cask spotube
&lt;/pre&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows - &lt;a href=&quot;https://chocolatey.org&quot;&gt;Chocolatey&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;p&gt;&lt;code&gt;choco install spotube&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows - &lt;a href=&quot;https://scoop.sh&quot;&gt;Scoop&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;p&gt;&lt;code&gt;scoop bucket add extras&lt;/code&gt;&lt;/p&gt; &lt;p&gt;&lt;code&gt;scoop install spotube&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows - &lt;a href=&quot;https://github.com/microsoft/winget-cli&quot;&gt;WinGet&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;p&gt;&lt;code&gt;winget install --id KRTirtho.Spotube&lt;/code&gt;&lt;/p&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;h3&gt;🔄 Nightly Builds&lt;/h3&gt; 
&lt;p&gt;Grab the latest nightly builds of Spotube &lt;a href=&quot;https://github.com/KRTirtho/spotube/releases/tag/nightly&quot;&gt;from the GitHub Releases&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;🕳️ Building from source&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/KRTirtho/spotube/actions&quot;&gt;&lt;img alt=&quot;GitHub Workflow Status&quot; src=&quot;https://img.shields.io/github/actions/workflow/status/KRTirtho/spotube/spotube-release-binary.yml?+label=Build%20Status&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;You can compile Spotube&#39;s source code by &lt;a href=&quot;https://raw.githubusercontent.com/KRTirtho/spotube/master/CONTRIBUTION.md#your-first-code-contribution&quot;&gt;following these instructions&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;👥 The Spotube team&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho&quot;&gt;Kingkor Roy Tirtho&lt;/a&gt; - The Founder, Maintainer and Lead Developer&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/owencz1998&quot;&gt;Owen Connor&lt;/a&gt; - The Cool Discord Moderator&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/karniv00l&quot;&gt;Piotr Rogowski&lt;/a&gt; - The MacOS Developer&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/RustyApple&quot;&gt;Rusty Apple&lt;/a&gt; - The Mysterious Unknown Guy&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;💼 License&lt;/h2&gt; 
&lt;p&gt;Spotube is open source and licensed under the &lt;a href=&quot;https://raw.githubusercontent.com/KRTirtho/spotube/master/LICENSE&quot;&gt;BSD-4-Clause&lt;/a&gt; License.&lt;/p&gt; 
&lt;p&gt;If you are curious, you can &lt;a href=&quot;https://dev.to/krtirtho/choosing-open-source-license-wisely-1m3p&quot;&gt;read the reason of choosing this license&lt;/a&gt;.&lt;/p&gt; 
&lt;details&gt; 
 &lt;summary&gt; &lt;h2&gt;&lt;code&gt;[Click to show]&lt;/code&gt; 🙏 Services/Package/Plugin Credits&lt;/h2&gt; &lt;/summary&gt; 
 &lt;h3&gt;Services&lt;/h3&gt; 
 &lt;ol&gt; 
  &lt;li&gt;&lt;a href=&quot;https://flutter.dev&quot;&gt;Flutter&lt;/a&gt; - Flutter transforms the app development process. Build, test, and deploy beautiful mobile, web, desktop, and embedded apps from a single codebase&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://mpv.io&quot;&gt;MPV&lt;/a&gt; - mpv is a free (as in freedom) media player for the command line. It supports a wide variety of media file formats, audio and video codecs, and subtitle types.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://musicbrainz.org&quot;&gt;Musicbrainz&lt;/a&gt; - MusicBrainz is a MetaBrainz project that aims to create a collaborative music database that is similar to the freedb project.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://listenbrainz.org&quot;&gt;Listenbrainz&lt;/a&gt; - ListenBrainz is a open-source project by the MetaBrainz Foundation that allows users to crowdsource and publicly store their digital music listening data.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://piped-docs.kavin.rocks/&quot;&gt;Piped&lt;/a&gt; - Piped is a privacy friendly alternative YouTube frontend, which is efficient and scalable by design.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://invidious.io/&quot;&gt;Invidious&lt;/a&gt; - Invidious is an open source alternative front-end to YouTube.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/yt-dlp/yt-dlp&quot;&gt;yt-dlp&lt;/a&gt; - A feature-rich command-line audio/video downloader.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/TeamNewPipe/NewPipeExtractor&quot;&gt;NewPipeExtractor&lt;/a&gt; - NewPipe&#39;s core library for extracting data from streaming sites.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Hexer10/youtube_explode_dart&quot;&gt;YouTubeExplodeDart&lt;/a&gt; - A port in dart of the youtube explode library. Supports several API functions without the need of Youtube API Key.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://lrclib.net/&quot;&gt;LRCLib&lt;/a&gt; - A public synced lyric API.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://www.linux.org&quot;&gt;Linux&lt;/a&gt; - Linux is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged in a Linux distribution&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://aur.archlinux.org&quot;&gt;AUR&lt;/a&gt; - AUR stands for Arch User Repository. It is a community-driven repository for Arch-based Linux distributions users&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://flatpak.org&quot;&gt;Flatpak&lt;/a&gt; - Flatpak is a utility for software deployment and package management for Linux&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://sponsor.ajay.app&quot;&gt;SponsorBlock&lt;/a&gt; - SponsorBlock is an open-source crowdsourced browser extension and open API for skipping sponsor segments in YouTube videos.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://jrsoftware.org/isinfo.php&quot;&gt;Inno Setup&lt;/a&gt; - Inno Setup is a free installer for Windows programs by Jordan Russell and Martijn Laan&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://f-droid.org&quot;&gt;F-Droid&lt;/a&gt; - F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://last.fm&quot;&gt;LastFM&lt;/a&gt; - &lt;a href=&quot;http://Last.fm&quot;&gt;Last.fm&lt;/a&gt; is a music streaming and discovery platform that helps users discover and share new music. It tracks users&#39; music listening habits across many devices and platforms.&lt;/li&gt; 
 &lt;/ol&gt; 
 &lt;h3&gt;Dependencies&lt;/h3&gt; 
 &lt;ol&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/llfbandit/app_links&quot;&gt;app_links&lt;/a&gt; - Android App Links, Deep Links, iOs Universal Links and Custom URL schemes handler for Flutter (desktop included).&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/args&quot;&gt;args&lt;/a&gt; - Library for defining parsers for parsing raw command-line arguments into a set of options and values using GNU and POSIX style options.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/audio_service&quot;&gt;audio_service&lt;/a&gt; - Flutter plugin to play audio in the background while the screen is off.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/bdrazhzhov/audio-service-mpris&quot;&gt;audio_service_mpris&lt;/a&gt; - audio_service platform interface supporting Media Player Remote Interfacing Specification.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/ryanheise/audio_session&quot;&gt;audio_session&lt;/a&gt; - Sets the iOS audio session category and Android audio attributes for your app, and manages your app&#39;s audio focus, mixing and ducking behaviour.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Milad-Akarie/auto_route_library&quot;&gt;auto_route&lt;/a&gt; - AutoRoute is a declarative routing solution, where everything needed for navigation is automatically generated for you.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/leisim/auto_size_text&quot;&gt;auto_size_text&lt;/a&gt; - Flutter widget that automatically resizes text to fit perfectly within its bounds.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://bonsoir.skyost.eu&quot;&gt;bonsoir&lt;/a&gt; - A Zeroconf library that allows you to discover network services and to broadcast your own. Based on Apple Bonjour and Android NSD.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Baseflow/flutter_cached_network_image&quot;&gt;cached_network_image&lt;/a&gt; - Flutter library to load and cache network images. Can also be used with placeholder and error widgets.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/plus_plugins&quot;&gt;connectivity_plus&lt;/a&gt; - Flutter plugin for discovering the state of the network (WiFi &amp;amp; mobile/cellular) connectivity on Android and iOS.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/plus_plugins&quot;&gt;device_info_plus&lt;/a&gt; - Flutter plugin providing detailed information about the device (make, model, etc.), and Android or iOS version the app is running on.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/cfug/dio&quot;&gt;dio&lt;/a&gt; - A powerful HTTP networking package,supports Interceptors,Aborting and canceling a request,Custom adapters, Transformers, etc.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://drift.simonbinder.eu/&quot;&gt;drift&lt;/a&gt; - Drift is a reactive library to store relational data in Dart and Flutter applications.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/desktop-dart/duration&quot;&gt;duration&lt;/a&gt; - Utilities to make working with &#39;Duration&#39;s easier. Formats duration in human readable form and also parses duration in human readable form to Dart&#39;s Duration.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/encrypt&quot;&gt;encrypt&lt;/a&gt; - A set of high-level APIs over PointyCastle for two-way cryptography.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/petercinibulk/envied&quot;&gt;envied&lt;/a&gt; - Explicitly reads environment variables into a dart file from a .env file for more security and faster start up times.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/miguelpruivo/plugins_flutter_file_picker&quot;&gt;file_picker&lt;/a&gt; - A package that allows you to use a native file explorer to pick single or multiple absolute file paths, with extension filtering support.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/file_selector&quot;&gt;file_selector&lt;/a&gt; - Flutter plugin for opening and saving files, or selecting directories, using native file selection UI.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/microsoft/fluentui-system-icons/tree/main&quot;&gt;fluentui_system_icons&lt;/a&gt; - Fluent UI System Icons are a collection of familiar, friendly and modern icons from Microsoft.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Baseflow/flutter_cache_manager/tree/develop/flutter_cache_manager&quot;&gt;flutter_cache_manager&lt;/a&gt; - Generic cache manager for flutter. Saves web files on the storages of the device and saves the cache info using sqflite.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_discord_rpc&quot;&gt;flutter_discord_rpc&lt;/a&gt; - Discord RPC support for Flutter desktop platforms&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/ajinasokan/flutter_displaymode&quot;&gt;flutter_displaymode&lt;/a&gt; - A Flutter plugin to set display mode (resolution, refresh rate) on Android platform. Allows to enable high refresh rate on supported devices.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/muj-programmer/flutter_feather_icons&quot;&gt;flutter_feather_icons&lt;/a&gt; - Feather is a collection of simply beautiful open source icons. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and usability.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/flutter-form-builder-ecosystem&quot;&gt;flutter_form_builder&lt;/a&gt; - This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/rrousselGit/flutter_hooks&quot;&gt;flutter_hooks&lt;/a&gt; - A flutter implementation of React hooks. It adds a new kind of widget with enhanced code reuse.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://inappwebview.dev/&quot;&gt;flutter_inappwebview&lt;/a&gt; - A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_native_splash&quot;&gt;flutter_native_splash&lt;/a&gt; - Customize Flutter&#39;s default white native splash screen with background color and splash image. Supports dark mode, full screen, and more.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://riverpod.dev&quot;&gt;flutter_riverpod&lt;/a&gt; - A reactive caching and data-binding framework. Riverpod makes working with asynchronous code a breeze.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/bhagat-techind/flutter_sharing_intent.git&quot;&gt;flutter_sharing_intent&lt;/a&gt; - A flutter plugin that allow flutter apps to receive photos, videos, text, urls or any other file types from another app.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/flutter_undraw&quot;&gt;flutter_undraw&lt;/a&gt; - &lt;a href=&quot;http://Undraw.co&quot;&gt;Undraw.co&lt;/a&gt; Illustrations for Flutter with customization options&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/flutter-form-builder-ecosystem&quot;&gt;form_builder_validators&lt;/a&gt; - Form Builder Validators set of validators for FlutterFormBuilder. Provides common validators and a way to make your own.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/freezed_annotation&quot;&gt;freezed_annotation&lt;/a&gt; - Annotations for the freezed code-generator. This package does nothing without freezed too.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/sphericalkat/dart-fuzzywuzzy&quot;&gt;fuzzywuzzy&lt;/a&gt; - An implementation of the popular fuzzywuzzy package in Dart, to suit all your fuzzy string matching/searching needs!&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/home_widget&quot;&gt;home_widget&lt;/a&gt; - A plugin to provide a common interface for creating HomeScreen Widgets for Android and iOS.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://riverpod.dev&quot;&gt;hooks_riverpod&lt;/a&gt; - A reactive caching and data-binding framework. Riverpod makes working with asynchronous code a breeze.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/html&quot;&gt;html&lt;/a&gt; - APIs for parsing and manipulating HTML content outside the browser.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/filiph/html_unescape&quot;&gt;html_unescape&lt;/a&gt; - A small library for un-escaping HTML. Supports all Named Character References, Decimal Character References and Hexadecimal Character References.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/http&quot;&gt;http&lt;/a&gt; - A composable, multi-platform, Future-based API for HTTP requests.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/image_picker&quot;&gt;image_picker&lt;/a&gt; - Flutter plugin for selecting images from the Android and iOS image library, and taking new pictures with the camera.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/intl&quot;&gt;intl&lt;/a&gt; - Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/leanflutter/local_notifier&quot;&gt;local_notifier&lt;/a&gt; - This plugin allows Flutter desktop apps to displaying local notifications.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/logger&quot;&gt;logger&lt;/a&gt; - Small, easy to use and extensible logger which prints beautiful logs.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/logging&quot;&gt;logging&lt;/a&gt; - Provides APIs for debugging and error logging, similar to loggers in other languages, such as the Closure JS Logger and java.util.logging.Logger.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/lrc&quot;&gt;lrc&lt;/a&gt; - A Dart-only package that creates, parses, and handles LRC, which is a format that stores song lyrics.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/metadata_god&quot;&gt;metadata_god&lt;/a&gt; - Plugin for retrieving and writing audio tags/metadata from audio files&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/mime&quot;&gt;mime&lt;/a&gt; - Utilities for handling media (MIME) types, including determining a type from a file extension and file contents.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/open_file&quot;&gt;open_file&lt;/a&gt; - A plug-in that can call native APP to open files with string result in flutter, support iOS(UTI) / android(intent) / PC(ffi) / web(dart:html)&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/plus_plugins&quot;&gt;package_info_plus&lt;/a&gt; - Flutter plugin for querying information about the application package, such as CFBundleVersion on iOS or versionCode on Android.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/palette_generator&quot;&gt;palette_generator&lt;/a&gt; - Flutter package for generating palette colors from a source image.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/path&quot;&gt;path&lt;/a&gt; - A string-based path manipulation library. All of the path operations you know and love, with solid support for Windows, POSIX (Linux and Mac OS X), and the web.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/path_provider&quot;&gt;path_provider&lt;/a&gt; - Flutter plugin for getting commonly used locations on host platform file systems, such as the temp and app data directories.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/permission_handler&quot;&gt;permission_handler&lt;/a&gt; - Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://riverpod.dev&quot;&gt;riverpod&lt;/a&gt; - A reactive caching and data-binding framework. Riverpod makes working with asynchronous code a breeze.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/quire-io/scroll-to-index&quot;&gt;scroll_to_index&lt;/a&gt; - Scroll to a specific child of any scrollable widget in Flutter&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/sunarya-thito/shadcn_flutter&quot;&gt;shadcn_flutter&lt;/a&gt; - Beautifully designed components from Shadcn/UI is now available for Flutter&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/shared_preferences&quot;&gt;shared_preferences&lt;/a&gt; - Flutter plugin for reading and writing simple key-value pairs. Wraps NSUserDefaults on iOS and SharedPreferences on Android.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/shelf&quot;&gt;shelf&lt;/a&gt; - A model for web server middleware that encourages composition and easy reuse.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/shelf_router&quot;&gt;shelf_router&lt;/a&gt; - A convenient request router for the shelf web-framework, with support for URL-parameters, nested routers and routers generated from source annotations.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/shelf_web_socket&quot;&gt;shelf_web_socket&lt;/a&gt; - A shelf handler that wires up a listener for every connection.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://teavelopment.com/&quot;&gt;simple_icons&lt;/a&gt; - The Simple Icon pack available as Flutter Icons. Provides over 1500 Free SVG icons for popular brands.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Milad-Akarie/skeletonizer&quot;&gt;skeletonizer&lt;/a&gt; - Converts already built widgets into skeleton loaders with no extra effort.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/akshathjain/sliding_up_panel&quot;&gt;sliding_up_panel&lt;/a&gt; - A draggable Flutter widget that makes implementing a SlidingUpPanel much easier!&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Kavantix&quot;&gt;sliver_tools&lt;/a&gt; - A set of useful sliver tools that are missing from the flutter framework&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/smtc_windows&quot;&gt;smtc_windows&lt;/a&gt; - Windows &lt;code&gt;SystemMediaTransportControls&lt;/code&gt; implementation for Flutter giving access to Windows OS Media Control applet.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3&quot;&gt;sqlite3&lt;/a&gt; - Provides lightweight yet convenient bindings to SQLite by using dart:ffi&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs&quot;&gt;sqlite3_flutter_libs&lt;/a&gt; - Flutter plugin to include native sqlite3 libraries with your app&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/timezone&quot;&gt;timezone&lt;/a&gt; - Time zone database and time zone aware DateTime.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/gtk-flutter/titlebar_buttons&quot;&gt;titlebar_buttons&lt;/a&gt; - A package which provides most of the titlebar buttons from windows, linux and macos.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/leanflutter/tray_manager&quot;&gt;tray_manager&lt;/a&gt; - This plugin allows Flutter desktop apps to defines system tray.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/url_launcher&quot;&gt;url_launcher&lt;/a&gt; - Flutter plugin for launching a URL. Supports web, phone, SMS, and email schemes.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/uuid&quot;&gt;uuid&lt;/a&gt; - RFC4122 (v1, v4, v5, v6, v7, v8) UUID Generator and Parser for Dart&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/dartninja/version&quot;&gt;version&lt;/a&gt; - Provides a simple class for parsing and comparing semantic versions as defined by &lt;a href=&quot;http://semver.org/&quot;&gt;http://semver.org/&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/VeryGoodOpenSource/very_good_infinite_list&quot;&gt;very_good_infinite_list&lt;/a&gt; - A library for easily displaying paginated data, created by Very Good Ventures. Great for activity feeds, news feeds, and more.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/visibility_detector&quot;&gt;visibility_detector&lt;/a&gt; - A widget that detects the visibility of its child and notifies a callback.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/web_socket_channel&quot;&gt;web_socket_channel&lt;/a&gt; - StreamChannel wrappers for WebSockets. Provides a cross-platform WebSocketChannel API, a cross-platform implementation of that API that communicates over an underlying StreamChannel.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/wikipedia_api&quot;&gt;wikipedia_api&lt;/a&gt; - Wikipedia API for dart and flutter&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/win32_registry&quot;&gt;win32_registry&lt;/a&gt; - A package that provides a friendly Dart API for accessing the Windows Registry.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://leanflutter.dev&quot;&gt;window_manager&lt;/a&gt; - This plugin allows Flutter desktop apps to resizing and repositioning the window.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Hexer10/youtube_explode_dart&quot;&gt;youtube_explode_dart&lt;/a&gt; - A port in dart of the youtube explode library. Supports several API functions without the need of Youtube API Key.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/http_parser&quot;&gt;http_parser&lt;/a&gt; - A platform-independent package for parsing and serializing HTTP formats.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/collection&quot;&gt;collection&lt;/a&gt; - Collections and utilities functions and classes related to collections.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/archive&quot;&gt;archive&lt;/a&gt; - Provides encoders and decoders for various archive and compression formats such as zip, tar, bzip2, gzip, and zlib.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/hetu-script/hetu-script&quot;&gt;hetu_script&lt;/a&gt; - Hetu is a lightweight scripting language for embedding in Flutter apps.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/flutter-it/get_it&quot;&gt;get_it&lt;/a&gt; - Simple direct Service Locator that allows to decouple the interface from a concrete implementation and to access the concrete implementation from everywhere in your App&quot;&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_markdown_plus&quot;&gt;flutter_markdown_plus&lt;/a&gt; - A Markdown renderer for Flutter. Create rich text output, including text styles, tables, links, and more, from plain text data formatted with simple Markdown tags.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/pub_semver&quot;&gt;pub_semver&lt;/a&gt; - Versions and version constraints implementing pub&#39;s versioning policy. This is very similar to vanilla semver, with a few corner cases.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/mrgnhnt96/change_case&quot;&gt;change_case&lt;/a&gt; - An extension on String for the missing methods for camelCase, PascalCase, Capital Case, snake_case, param-case, CONSTANT_CASE and others.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_secure_storage&quot;&gt;flutter_secure_storage&lt;/a&gt; - Flutter Secure Storage provides API to store data in secure storage. Keychain is used in iOS, KeyStore based solution is used in Android.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/build_runner&quot;&gt;build_runner&lt;/a&gt; - A build system for Dart code generation and modular compilation.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/petercinibulk/envied&quot;&gt;envied_generator&lt;/a&gt; - Generator for the Envied package. See &lt;a href=&quot;https://pub.dev/packages/envied&quot;&gt;https://pub.dev/packages/envied&lt;/a&gt;.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/FlutterGen/flutter_gen&quot;&gt;flutter_gen_runner&lt;/a&gt; - The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/flutter_launcher_icons&quot;&gt;flutter_launcher_icons&lt;/a&gt; - A package which simplifies the task of updating your Flutter app&#39;s launcher icon.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/flutter_lints&quot;&gt;flutter_lints&lt;/a&gt; - Recommended lints for Flutter apps, packages, and plugins to encourage good coding practices.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/json_serializable&quot;&gt;json_serializable&lt;/a&gt; - Automatically generate code for converting to and from JSON by annotating Dart classes.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/freezed&quot;&gt;freezed&lt;/a&gt; - Code generation for immutable classes that has a simple syntax/API without compromising on the features.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/tekartik/process_run.dart/raw/master/packages/process_run&quot;&gt;process_run&lt;/a&gt; - Process run helpers for Linux/Win/Mac and which like feature for finding executables.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/pubspec_parse&quot;&gt;pubspec_parse&lt;/a&gt; - Simple package for parsing pubspec.yaml files with a type-safe API and rich error reporting.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/leoafarias/pub_api_client&quot;&gt;pub_api_client&lt;/a&gt; - An API Client for Pub to interact with public package information.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/io&quot;&gt;io&lt;/a&gt; - Utilities for the Dart VM Runtime including support for ANSI colors, file copying, and standard exit code values.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://drift.simonbinder.eu/&quot;&gt;drift_dev&lt;/a&gt; - Dev-dependency for users of drift. Contains the generator and development tools.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://pub.dev/packages/test&quot;&gt;test&lt;/a&gt; - A full featured library for writing and running Dart tests across platforms.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Milad-Akarie/auto_route_library&quot;&gt;auto_route_generator&lt;/a&gt; - AutoRoute is a declarative routing solution, where everything needed for navigation is automatically generated for you.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/MixinNetwork/flutter-plugins/tree/main/packages/desktop_webview_window&quot;&gt;desktop_webview_window&lt;/a&gt; - Show a webview window on your flutter desktop application.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/pvsvamsi/Disable-Battery-Optimizations&quot;&gt;disable_battery_optimization&lt;/a&gt; - Flutter plugin to check and disable battery optimizations. Also shows custom steps to disable the optimizations in devices like mi, xiaomi, samsung, oppo, huawei, oneplus etc&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/fluttercommunity/flutter-draggable-scrollbar&quot;&gt;draggable_scrollbar&lt;/a&gt; - A scrollbar that can be dragged for quickly navigation through a vertical list. Additional option is showing label next to scrollthumb with information about current item.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/flutter_broadcasts.git&quot;&gt;flutter_broadcasts&lt;/a&gt; - A plugin for sending and receiving broadcasts with Android intents and iOS notifications.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/Nebulino/Scrobblenaut&quot;&gt;scrobblenaut&lt;/a&gt; - A deadly simple LastFM API Wrapper for Dart. So deadly simple that it&#39;s gonna hit the mark.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/yt_dlp_dart.git&quot;&gt;yt_dlp_dart&lt;/a&gt; - A starting point for Dart libraries or applications.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/flutter_new_pipe_extractor&quot;&gt;flutter_new_pipe_extractor&lt;/a&gt; - NewPipeExtractor binding for Flutter (Android only)&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/hetu-community/hetu_std.git&quot;&gt;hetu_std&lt;/a&gt; - A sample command-line application.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/hetu-community/hetu_otp_util.git&quot;&gt;hetu_otp_util&lt;/a&gt; - A sample command-line application.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/KRTirtho/hetu_spotube_plugin&quot;&gt;hetu_spotube_plugin&lt;/a&gt; - A new Flutter package project.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/media-kit/media-kit&quot;&gt;media_kit&lt;/a&gt; - A cross-platform video player &amp;amp; audio player for Flutter &amp;amp; Dart. Performant, stable, feature-proof &amp;amp; modular.&lt;/li&gt; 
  &lt;li&gt;&lt;a href=&quot;https://github.com/media-kit/media-kit.git&quot;&gt;media_kit_libs_audio&lt;/a&gt; - package:media_kit audio (only) playback native libraries for all platforms.&lt;/li&gt; 
 &lt;/ol&gt; 
&lt;/details&gt; 
&lt;div align=&quot;center&quot;&gt;
 &lt;h4&gt;© Copyright Spotube 2025&lt;/h4&gt;
&lt;/div&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/338719962/f61378ef-aa0f-43d2-b585-1cc121cb7cb9" medium="image" />
      
    </item>
    
    <item>
      <title>K9i-0/ccpocket</title>
      <link>https://github.com/K9i-0/ccpocket</link>
      <description>&lt;p&gt;Mobile client for Codex and Claude — control coding agents from your phone via WebSocket bridge&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;CC Pocket&lt;/h1&gt; 
&lt;p&gt;CC Pocket is a mobile and desktop app for controlling Codex and Claude coding-agent sessions. Run the agents through a self-hosted Bridge Server on your own Mac or Linux machine, then start sessions, approve actions, answer questions, review changes, and pick up work from iPhone, iPad, Android, or the native macOS app. Experimental Linux desktop builds are also available from GitHub Releases.&lt;/p&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/README.ja.md&quot;&gt;日本語版 README&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/README.zh-CN.md&quot;&gt;简体中文版 README&lt;/a&gt; | &lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/README.ko.md&quot;&gt;한국어 README&lt;/a&gt;&lt;/p&gt; 
&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/docs/images/screenshots.png&quot; alt=&quot;CC Pocket screenshots&quot; width=&quot;800&quot; /&gt; &lt;/p&gt; 
&lt;h2&gt;Install&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;Install at least one agent CLI on the machine that will run your sessions: &lt;a href=&quot;https://github.com/openai/codex&quot;&gt;Codex&lt;/a&gt; or &lt;a href=&quot;https://docs.anthropic.com/en/docs/claude-code&quot;&gt;Claude Code&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;Install &lt;a href=&quot;https://nodejs.org/&quot;&gt;Node.js&lt;/a&gt; 18 or newer on that same machine.&lt;/li&gt; 
 &lt;li&gt;Start the CC Pocket Bridge Server:&lt;/li&gt; 
&lt;/ol&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx @ccpocket/bridge@latest
&lt;/code&gt;&lt;/pre&gt; 
&lt;ol start=&quot;4&quot;&gt; 
 &lt;li&gt;Install CC Pocket and scan the QR code printed by the Bridge Server.&lt;/li&gt; 
 &lt;li&gt;Pick a project, choose Codex or Claude, and start coding from the app.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Platform&lt;/th&gt; 
   &lt;th&gt;Install&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;iOS / iPadOS&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://apps.apple.com/us/app/cc-pocket-code-anywhere/id6759188790&quot;&gt;&lt;img height=&quot;40&quot; alt=&quot;Download on the App Store&quot; src=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/docs/images/app-store-badge.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Android&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.k9i.ccpocket&quot;&gt;&lt;img height=&quot;40&quot; alt=&quot;Get it on Google Play&quot; src=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/docs/images/google-play-badge-en.svg?sanitize=true&quot; /&gt;&lt;/a&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;macOS&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Download the latest &lt;code&gt;.dmg&lt;/code&gt; from &lt;a href=&quot;https://github.com/K9i-0/ccpocket/releases?q=macos&quot;&gt;GitHub Releases&lt;/a&gt;. Look for releases tagged &lt;code&gt;macos/v*&lt;/code&gt;.&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;strong&gt;Linux (experimental)&lt;/strong&gt;&lt;/td&gt; 
   &lt;td&gt;Download the latest &lt;code&gt;.tar.gz&lt;/code&gt; from &lt;a href=&quot;https://github.com/K9i-0/ccpocket/releases?q=linux&quot;&gt;GitHub Releases&lt;/a&gt;. Look for releases tagged &lt;code&gt;linux/v*&lt;/code&gt;.&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;h2&gt;Free to Use&lt;/h2&gt; 
&lt;p&gt;CC Pocket is free to use. If it helps your workflow, please consider becoming a Supporter in the app. Supporter purchases help cover development and AI tooling costs.&lt;/p&gt; 
&lt;p&gt;New to mobile coding agents? See &lt;a href=&quot;https://k9i-0.github.io/ccpocket/how-to-run-codex-from-iphone-android/&quot;&gt;How to run Codex from iPhone or Android&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;What You Can Do&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;strong&gt;Control Codex and Claude anywhere&lt;/strong&gt;: start sessions from the app, resume recent sessions created in the CLI or app, and move between phone, tablet, and Mac without losing context.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Stay in the approval loop&lt;/strong&gt;: approve commands, file edits, MCP requests, and agent questions from a mobile-first UI without returning to your keyboard.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Explore and review the workspace&lt;/strong&gt;: browse project files with Explorer, inspect git diffs and image diffs, stage changes, commit, push, or revert them.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Write rich prompts on mobile&lt;/strong&gt;: use Markdown, completions, voice input, and image attachments.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Keep working on spotty networks&lt;/strong&gt;: recover missed streaming updates, queue outgoing messages while offline, and resend automatically after reconnecting.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Work in parallel safely&lt;/strong&gt;: run sessions in separate git worktrees and keep long-running work isolated.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Manage your machines&lt;/strong&gt;: save hosts, connect with QR codes or mDNS discovery, use Tailscale, start/stop/update over SSH, and receive push notifications.&lt;/li&gt; 
 &lt;li&gt;&lt;strong&gt;Use larger screens when helpful&lt;/strong&gt;: CC Pocket adapts to iPad, macOS, and Linux with workspace layouts for chat, Git, Explorer, screenshots, and images.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;How It Works&lt;/h2&gt; 
&lt;p&gt;CC Pocket has two parts:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-text&quot;&gt;CC Pocket app  &amp;lt;-&amp;gt;  Bridge Server on your machine  &amp;lt;-&amp;gt;  Codex / Claude
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;The app is the interface you use. The Bridge Server runs locally on the machine that has access to your projects, shell, git repository, and agent CLI. Your code stays on your own machine instead of moving into a hosted IDE.&lt;/p&gt; 
&lt;h2&gt;Remote Access&lt;/h2&gt; 
&lt;p&gt;On the same network, connect with the QR code, mDNS discovery, or a manual &lt;code&gt;ws://&lt;/code&gt; / &lt;code&gt;wss://&lt;/code&gt; URL.&lt;/p&gt; 
&lt;p&gt;For access away from home or the office, Tailscale is the recommended setup:&lt;/p&gt; 
&lt;ol&gt; 
 &lt;li&gt;Install &lt;a href=&quot;https://tailscale.com/&quot;&gt;Tailscale&lt;/a&gt; on your host machine and phone.&lt;/li&gt; 
 &lt;li&gt;Join the same tailnet.&lt;/li&gt; 
 &lt;li&gt;Connect to &lt;code&gt;ws://&amp;lt;host-tailscale-ip&amp;gt;:8765&lt;/code&gt; from CC Pocket.&lt;/li&gt; 
&lt;/ol&gt; 
&lt;p&gt;For an always-on host, the Bridge Server can also be registered as a background service:&lt;/p&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;npx @ccpocket/bridge@latest setup
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Service setup supports macOS launchd and Linux systemd.&lt;/p&gt; 
&lt;h2&gt;Notes&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;Claude sessions require &lt;code&gt;@ccpocket/bridge&lt;/code&gt; &lt;code&gt;1.25.0&lt;/code&gt; or newer and an &lt;code&gt;ANTHROPIC_API_KEY&lt;/code&gt;. Claude subscription login via &lt;code&gt;/login&lt;/code&gt; is not supported for new Bridge installs. See &lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/docs/auth-troubleshooting.md&quot;&gt;Claude authentication troubleshooting&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;CC Pocket is designed around self-hosting and minimal data collection. Supporter purchases restore within the same Apple ID or Google account, but do not sync across stores. See &lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/docs/supporter.md&quot;&gt;Supporter / Purchases&lt;/a&gt;.&lt;/li&gt; 
 &lt;li&gt;Screenshot capture on macOS requires Screen Recording permission for the terminal app running the Bridge Server.&lt;/li&gt; 
 &lt;li&gt;CC Pocket is not affiliated with, endorsed by, or associated with Anthropic or OpenAI.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Development&lt;/h2&gt; 
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;git clone https://github.com/K9i-0/ccpocket.git
cd ccpocket
npm install
cd apps/mobile &amp;amp;&amp;amp; flutter pub get &amp;amp;&amp;amp; cd ../..
&lt;/code&gt;&lt;/pre&gt; 
&lt;p&gt;Common commands:&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Command&lt;/th&gt; 
   &lt;th&gt;Description&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;npm run bridge&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Start Bridge Server in dev mode&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;npm run bridge:build&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Build the Bridge Server&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;npm run dev&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Restart Bridge and launch the Flutter app&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;npm run test:bridge&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Run Bridge Server tests&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;cd apps/mobile &amp;amp;&amp;amp; flutter test&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Run Flutter tests&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;code&gt;cd apps/mobile &amp;amp;&amp;amp; dart analyze&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Run Dart static analysis&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;See &lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt; for contribution guidelines.&lt;/p&gt; 
&lt;h2&gt;License&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://raw.githubusercontent.com/K9i-0/ccpocket/main/LICENSE&quot;&gt;FSL-1.1-MIT&lt;/a&gt;: Source available. Converts to MIT on 2028-03-17.&lt;/p&gt; 
&lt;p&gt;The repository includes a Bridge Redistribution Exception for &lt;code&gt;@ccpocket/bridge&lt;/code&gt;. Unofficial Bridge redistributions and environment-specific forks are allowed, as long as they remain clearly unofficial and unsupported.&lt;/p&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/1151010960/fadb8a17-0bd0-4908-b3e8-69a4df29812c" medium="image" />
      
    </item>
    
    <item>
      <title>ImranR98/Obtainium</title>
      <link>https://github.com/ImranR98/Obtainium</link>
      <description>&lt;p&gt;Get Android app updates straight from the source.&lt;/p&gt;&lt;hr&gt;&lt;div align=&quot;center&quot;&gt;
 &lt;a href=&quot;https://github.com/Safouene1/support-palestine-banner/raw/master/Markdown-pages/Support.md&quot;&gt;&lt;img src=&quot;https://raw.githubusercontent.com/Safouene1/support-palestine-banner/master/banner-support.svg?sanitize=true&quot; alt=&quot;Support Palestine&quot; style=&quot;width: 100%;&quot; /&gt;&lt;/a&gt;
&lt;/div&gt; 
&lt;h1&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/graphics/icon_small.png&quot; alt=&quot;Obtainium Icon&quot; /&gt; Obtainium&lt;/h1&gt; 
&lt;p&gt;Get Android app updates straight from the source.&lt;/p&gt; 
&lt;p&gt;Obtainium allows you to install and update apps directly from their releases pages, and receive notifications when new releases are made available.&lt;/p&gt; 
&lt;p&gt;More info:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://wiki.obtainium.imranr.dev/&quot;&gt;Obtainium Wiki&lt;/a&gt; (&lt;a href=&quot;https://github.com/ImranR98/Obtainium-Wiki&quot;&gt;repository&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=0MF_v2OBncw&quot;&gt;Obtainium 101&lt;/a&gt; - Tutorial video&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/soupslurpr/AppVerifier&quot;&gt;AppVerifier&lt;/a&gt; - App verification tool (recommended, integrates with Obtainium)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://apps.obtainium.imranr.dev/&quot;&gt;apps.obtainium.imranr.dev&lt;/a&gt; - Crowdsourced app configurations (&lt;a href=&quot;https://github.com/ImranR98/apps.obtainium.imranr.dev&quot;&gt;repository&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://youtu.be/FFz57zNR_M0&quot;&gt;Side Of Burritos - You should use this instead of F-Droid | How to use app RSS feed&lt;/a&gt; - Original motivation for this app&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://obtainium.imranr.dev&quot;&gt;Website&lt;/a&gt; (&lt;a href=&quot;https://github.com/ImranR98/obtainium.imranr.dev&quot;&gt;repository&lt;/a&gt;)&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/ImranR98/Obtainium&quot;&gt;Source code&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt;Currently supported App sources:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Open Source - General: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://github.com/&quot;&gt;GitHub&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://gitlab.com/&quot;&gt;GitLab&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://forgejo.org/&quot;&gt;Forgejo&lt;/a&gt; (&lt;a href=&quot;https://codeberg.org/&quot;&gt;Codeberg&lt;/a&gt;)&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://f-droid.org/&quot;&gt;F-Droid&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;Third Party F-Droid Repos&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://android.izzysoft.de/&quot;&gt;IzzyOnDroid&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://git.sr.ht/&quot;&gt;SourceHut&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Other - General: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://apkpure.net/&quot;&gt;APKPure&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://aptoide.com/&quot;&gt;Aptoide&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://uptodown.com/&quot;&gt;Uptodown&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://appgallery.huawei.com/&quot;&gt;Huawei AppGallery&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://sj.qq.com/&quot;&gt;Tencent App Store&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://h5.appstore.vivo.com.cn/&quot;&gt;vivo App Store (CN)&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://rustore.ru/&quot;&gt;RuStore&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://www.farsroid.com&quot;&gt;Farsroid&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://coolapk.com/&quot;&gt;CoolApk&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://rockmods.net/&quot;&gt;RockMods&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://liteapks.com/&quot;&gt;LiteAPKs&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://apk4free.net/&quot;&gt;APK4Free&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;Jenkins Jobs&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://apkmirror.com/&quot;&gt;APKMirror&lt;/a&gt; (Track-Only)&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Other - App-Specific: 
  &lt;ul&gt; 
   &lt;li&gt;&lt;a href=&quot;https://telegram.org/&quot;&gt;Telegram App&lt;/a&gt;&lt;/li&gt; 
   &lt;li&gt;&lt;a href=&quot;https://neutroncode.com/&quot;&gt;Neutron Code&lt;/a&gt;&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;Direct APK Link&lt;/li&gt; 
 &lt;li&gt;&quot;HTML&quot; (Fallback): Any other URL that returns an HTML page with links to APK files&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Finding App Configurations&lt;/h2&gt; 
&lt;p&gt;You can find crowdsourced app configurations at &lt;a href=&quot;https://apps.obtainium.imranr.dev&quot;&gt;apps.obtainium.imranr.dev&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;If you can&#39;t find the configuration for an app you want, feel free to leave a request on the &lt;a href=&quot;https://github.com/ImranR98/apps.obtainium.imranr.dev/discussions/new?category=app-requests&quot;&gt;discussions page&lt;/a&gt;.&lt;/p&gt; 
&lt;p&gt;Or, contribute some configurations to the website by creating a PR at &lt;a href=&quot;https://github.com/ImranR98/apps.obtainium.imranr.dev&quot;&gt;this repo&lt;/a&gt;.&lt;/p&gt; 
&lt;h2&gt;Installation&lt;/h2&gt; 
&lt;p&gt;&lt;a href=&quot;https://github.com/ImranR98/Obtainium/releases&quot;&gt;&lt;img src=&quot;https://github.com/machiav3lli/oandbackupx/raw/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png&quot; alt=&quot;Get it on GitHub&quot; height=&quot;80&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://apt.izzysoft.de/fdroid/index/apk/dev.imranr.obtainium&quot;&gt;&lt;img src=&quot;https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png&quot; alt=&quot;Get it on IzzyOnDroid&quot; height=&quot;80&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://f-droid.org/packages/dev.imranr.obtainium.fdroid/&quot;&gt;&lt;img src=&quot;https://fdroid.gitlab.io/artwork/badge/get-it-on.png&quot; alt=&quot;Get it on F-Droid&quot; height=&quot;80&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;p&gt;Verification info:&lt;/p&gt; 
&lt;ul&gt; 
 &lt;li&gt;Package ID: &lt;code&gt;dev.imranr.obtainium&lt;/code&gt;&lt;/li&gt; 
 &lt;li&gt;SHA-256 hash of signing certificate: &lt;code&gt;B3:53:60:1F:6A:1D:5F:D6:60:3A:E2:F5:0B:E8:0C:F3:01:36:7B:86:B6:AB:8B:1F:66:24:3D:A9:6C:D5:73:62&lt;/code&gt; 
  &lt;ul&gt; 
   &lt;li&gt;Note: The above signature is also valid for the F-Droid flavour of Obtainium, thanks to &lt;a href=&quot;https://f-droid.org/docs/Reproducible_Builds/&quot;&gt;reproducible builds&lt;/a&gt;.&lt;/li&gt; 
  &lt;/ul&gt; &lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://keyserver.ubuntu.com/pks/lookup?search=contact%40imranr.dev&amp;amp;fingerprint=on&amp;amp;op=index&quot;&gt;PGP Public Key&lt;/a&gt; (to verify APK hashes)&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Limitations&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;For some sources, data is gathered using Web scraping and can easily break due to changes in website design. In such cases, more reliable methods may be unavailable.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Screenshots&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/1.apps.png&quot; alt=&quot;Apps Page&quot; /&gt;&lt;/th&gt; 
   &lt;th&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/2.dark_theme.png&quot; alt=&quot;Dark Theme&quot; /&gt;&lt;/th&gt; 
   &lt;th&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/3.material_you.png&quot; alt=&quot;Material You&quot; /&gt;&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/4.app.png&quot; alt=&quot;App Page&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/5.app_opts.png&quot; alt=&quot;App Options&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/screenshots/6.app_webview.png&quot; alt=&quot;App Web View&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/d2c4741052ca4ecf99ab3ec8ab23fed805e0404dcce5de6fbd41f691236c2671/ImranR98/Obtainium" medium="image" />
      
    </item>
    
    <item>
      <title>getlantern/lantern</title>
      <link>https://github.com/getlantern/lantern</link>
      <description>&lt;p&gt;Open-source VPN for speed, privacy, and censorship circumvention. Free to download on Android, iOS, Windows, macOS, and Linux.&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;Lantern&lt;/h1&gt; 
&lt;h2&gt;&lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/English.svg?sanitize=true&quot; alt=&quot;en&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.zh.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/Chinese.svg?sanitize=true&quot; alt=&quot;zh&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.ru.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/Russian.svg?sanitize=true&quot; alt=&quot;ru&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.ar.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/Arabic.svg?sanitize=true&quot; alt=&quot;ar&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.fa.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/Farsi.svg?sanitize=true&quot; alt=&quot;fa&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/getlantern/.github/raw/main/profile/README.my.md&quot;&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/Burmese.svg?sanitize=true&quot; alt=&quot;my&quot; /&gt;&lt;/a&gt;&lt;/h2&gt; 
&lt;p&gt;Censorship circumvention tool available for free download on any operating system&lt;/p&gt; 
&lt;p&gt;&lt;img src=&quot;https://github.com/getlantern/.github/raw/main/resources/cover_page.png&quot; alt=&quot;cover page&quot; /&gt;&lt;/p&gt; 
&lt;h2&gt;Downloads&lt;/h2&gt; 
&lt;table&gt; 
 &lt;tbody&gt;
  &lt;tr&gt; 
   &lt;th&gt;&lt;/th&gt; 
   &lt;th&gt;stable&lt;/th&gt; 
   &lt;th&gt;app store&lt;/th&gt; 
   &lt;th&gt;beta&lt;/th&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Windows&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://gitlab.com/getlantern/lantern-binaries-mirror/-/raw/master/lantern-installer.exe&quot;&gt;Windows 10+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.exe&quot;&gt;Windows 10+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.exe&quot;&gt;Windows 10+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern-binaries/raw/main/lantern-installer-win7.exe&quot;&gt;Windows 7&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.exe&quot;&gt;Windows 10+&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Android&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://gitlab.com/getlantern/lantern-binaries-mirror/-/raw/master/lantern-installer.apk&quot;&gt;Android 6+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.apk&quot;&gt;Android 6+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.apk&quot;&gt;Android 6+&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://play.google.com/store/apps/details?id=org.getlantern.lantern&quot;&gt;Android 6+&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.apk&quot;&gt;Android 6+&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;macOS&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://gitlab.com/getlantern/lantern-binaries-mirror/-/raw/master/lantern-installer.dmg&quot;&gt;macOS 10.15+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.dmg&quot;&gt;macOS 10.15+&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.dmg&quot;&gt;macOS 10.15+&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.dmg&quot;&gt;macOS 10.15+&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;iOS&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.ipa&quot;&gt;ipa&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.ipa&quot;&gt;ipa&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://apps.apple.com/app/id1457872372?l&quot;&gt;iOS 11+&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.ipa&quot;&gt;ipa&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Linux (amd64)&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer.rpm&quot;&gt;rpm&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer.rpm&quot;&gt;rpm&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta.rpm&quot;&gt;rpm&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;th&gt;Linux (arm64)&lt;/th&gt; 
   &lt;td&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer-arm64.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer-arm64.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://github.com/getlantern/lantern/releases/latest/download/lantern-installer-arm64.rpm&quot;&gt;rpm&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/production/latest/lantern-installer-arm64.rpm&quot;&gt;rpm&lt;/a&gt; &lt;/td&gt; 
   &lt;td&gt;&lt;/td&gt; 
   &lt;td&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta-arm64.deb&quot;&gt;deb&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;https://s3.amazonaws.com/lantern.io/releases/beta/latest/lantern-installer-beta-arm64.rpm&quot;&gt;rpm&lt;/a&gt; &lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt;
&lt;/table&gt; 
&lt;ul&gt; 
 &lt;li&gt;If the App Store is unavailable in your region, you may be able to follow &lt;a href=&quot;https://lantern.io/faq#use-2&quot;&gt;these steps&lt;/a&gt; to download Lantern.&lt;/li&gt; 
 &lt;li&gt;For stable versions, multiple links exist for hosting redundancy and choice.&lt;/li&gt; 
 &lt;li&gt;Try the early release &quot;beta&quot; version. While this may be unstable, feedback helps us improve. Join our &lt;a href=&quot;https://raw.githubusercontent.com/getlantern/lantern/main/#links&quot;&gt;forums&lt;/a&gt; to contribute.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Links&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lantern.io&quot;&gt;Website&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://lantern.io/faq&quot;&gt;Frequently Asked Questions&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/getlantern/guide/wiki&quot;&gt;wiki&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;GitHub Discussions | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-uae/discussions&quot;&gt;اَلْعَرَبِيَّةُ&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-belarus&quot;&gt;беларуская&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-en/discussions&quot;&gt;English&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-fa/discussions&quot;&gt;فارسی&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-ru/discussions&quot;&gt;русский&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-ukraine/discussions&quot;&gt;українська&lt;/a&gt; | &lt;a href=&quot;https://github.com/getlantern/lantern-forum-cn/discussions&quot;&gt;中文&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Instagram | &lt;a href=&quot;https://www.instagram.com/getlantern/&quot;&gt;English&lt;/a&gt; | &lt;a href=&quot;https://www.instagram.com/getlantern_fa/&quot;&gt;فارسی&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Telegram | &lt;a href=&quot;https://t.me/lantern_official_bot&quot;&gt;@lantern_official_bot&lt;/a&gt; | &lt;a href=&quot;https://t.me/LanternFarsi&quot;&gt;فارسی&lt;/a&gt; | &lt;a href=&quot;https://t.me/lantern_russia&quot;&gt;русский&lt;/a&gt; | &lt;a href=&quot;https://t.me/lantern_china&quot;&gt;中文&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Telegram (beta testers) | &lt;a href=&quot;https://t.me/lanternbetaIR&quot;&gt;فارسی&lt;/a&gt; | &lt;a href=&quot;https://t.me/+pLVA7H6MU_Y2N2Vi&quot;&gt;русский&lt;/a&gt; | &lt;a href=&quot;https://t.me/+n3SfwL0Ho7w1ODgz&quot;&gt;中文&lt;/a&gt;&lt;/li&gt; 
 &lt;li&gt;Twitter | &lt;a href=&quot;https://twitter.com/getlantern&quot;&gt;English&lt;/a&gt; | &lt;a href=&quot;https://twitter.com/getlantern_fa&quot;&gt;فارسی&lt;/a&gt; | &lt;a href=&quot;https://twitter.com/getlantern_CN&quot;&gt;中文&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt; 
&lt;h2&gt;Release Notes&lt;/h2&gt; 
&lt;ul&gt; 
 &lt;li&gt;&lt;a href=&quot;https://github.com/getlantern/lantern/releases&quot;&gt;https://github.com/getlantern/lantern/releases&lt;/a&gt;&lt;/li&gt; 
&lt;/ul&gt;</description>
      
      <media:content url="https://repository-images.githubusercontent.com/1380117/8791137b-fd93-481a-93bd-3325688fad7e" medium="image" />
      
    </item>
    
    <item>
      <title>raoxwup/haka_comic</title>
      <link>https://github.com/raoxwup/haka_comic</link>
      <description>&lt;p&gt;哔咔漫画(PicACG/Bika/Pica)第三方跨平台客户端，清爽无广告&lt;/p&gt;&lt;hr&gt;&lt;h1&gt;HaKa Comic&lt;/h1&gt; 
&lt;p&gt;&lt;a href=&quot;https://opensource.org/licenses/GPL-3.0&quot;&gt;&lt;img src=&quot;https://img.shields.io/badge/License-GPL%203.0-blue.svg?logo=gnu&quot; alt=&quot;License: GPL-3.0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/raoxwup/haka_comic/stargazers&quot;&gt;&lt;img src=&quot;https://img.shields.io/github/stars/raoxwup/haka_comic.svg?style=flat&amp;amp;logo=github&quot; alt=&quot;GitHub Stars&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;h2&gt;📖 项目简介&lt;/h2&gt; 
&lt;p&gt;第三方哗咔漫画跨平台客户端。&lt;strong&gt;学习 flutter 的练习项目&lt;/strong&gt;，支持 Android、iOS、Mac、Windows、Linux平台，目前仍在持续完善中。如果觉得项目有帮助，欢迎给个 star ⭐ 支持一下&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;🖼️ 项目截图&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;分类浏览&lt;/th&gt; 
   &lt;th&gt;漫画列表&lt;/th&gt; 
   &lt;th&gt;漫画详情&lt;/th&gt; 
   &lt;th&gt;阅读界面&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/分类.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/漫画列表.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/漫画详情.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/阅读.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/pc-分类.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/pc-漫画列表.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/pc-漫画详情.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;img src=&quot;./screenshots/pc-阅读.png&quot; width=&quot;200&quot; /&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;p&gt;&lt;strong&gt;截图已经过时，以实际项目界面为主&lt;/strong&gt;&lt;/p&gt; 
&lt;hr /&gt; 
&lt;h2&gt;⬇️ 下载&lt;/h2&gt; 
&lt;p&gt;所有平台安装包都在 GitHub &lt;a href=&quot;https://github.com/raoxwup/haka_comic/releases&quot;&gt;Releases&lt;/a&gt;。&lt;/p&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;平台&lt;/th&gt; 
   &lt;th&gt;资源类型&lt;/th&gt; 
   &lt;th&gt;选择建议 / 备注&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Android&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;APK&lt;/code&gt;（&lt;code&gt;arm64&lt;/code&gt; 推荐 / &lt;code&gt;universal&lt;/code&gt; 通用 / 可选）&lt;/td&gt; 
   &lt;td&gt;大多数真机选 &lt;code&gt;arm64&lt;/code&gt;；不确定就选 &lt;code&gt;universal&lt;/code&gt;（体积更大）。&lt;code&gt;x86_64&lt;/code&gt; 通常用于模拟器。&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;iOS&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;IPA&lt;/code&gt;（未签名）&lt;/td&gt; 
   &lt;td&gt;需要自签/侧载后才能安装。推荐用 SideStore/AltStore：添加源 &lt;code&gt;alt_store.json&lt;/code&gt;（&lt;code&gt;https://raw.githubusercontent.com/raoxwup/haka_comic/main/alt_store.json&lt;/code&gt;），并按官方文档完成前置配置（如 &lt;a href=&quot;https://docs.sidestore.io/zh/docs/installation/prerequisites&quot;&gt;SideStore 安装前置&lt;/a&gt;）。&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;macOS&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;DMG&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;首次打开可能需要在系统安全设置里手动允许。&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Windows&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;EXE&lt;/code&gt;&lt;/td&gt; 
   &lt;td&gt;Inno Setup 安装器，可能触发 SmartScreen 提示，按需放行。&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Linux&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;DEB&lt;/code&gt;（&lt;code&gt;amd64&lt;/code&gt; / &lt;code&gt;arm64&lt;/code&gt;）&lt;/td&gt; 
   &lt;td&gt;Debian/Ubuntu 系：&lt;code&gt;sudo apt install ./xxx.deb&lt;/code&gt;。目前仅提供 &lt;code&gt;.deb&lt;/code&gt;。&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;提示：具体资产文件名会随版本变化，按 Release 页面展示为准。&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;hr /&gt; 
&lt;h2&gt;🛠️ 开发环境&lt;/h2&gt; 
&lt;table&gt; 
 &lt;thead&gt; 
  &lt;tr&gt; 
   &lt;th&gt;组件&lt;/th&gt; 
   &lt;th&gt;版本要求&lt;/th&gt; 
   &lt;th&gt;官网安装指南&lt;/th&gt; 
   &lt;th&gt;验证命令&lt;/th&gt; 
  &lt;/tr&gt; 
 &lt;/thead&gt; 
 &lt;tbody&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Flutter SDK&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;3.41.2&lt;/code&gt;（见 &lt;code&gt;pubspec.yaml&lt;/code&gt;）&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://docs.flutter.dev/get-started/install&quot;&gt;Flutter 安装文档&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;flutter --version&lt;/code&gt; / &lt;code&gt;flutter doctor -v&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Dart SDK&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;&amp;gt;= 3.10.0 &amp;lt; 4.0.0&lt;/code&gt;（见 &lt;code&gt;pubspec.yaml&lt;/code&gt;）&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://dart.dev/get-dart&quot;&gt;Dart SDK 安装文档&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;dart --version&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
  &lt;tr&gt; 
   &lt;td&gt;Rust toolchain&lt;/td&gt; 
   &lt;td&gt;建议使用 stable（本项目 Rust crate 为 edition 2021）&lt;/td&gt; 
   &lt;td&gt;&lt;a href=&quot;https://www.rust-lang.org/tools/install&quot;&gt;Rust 安装文档（rustup）&lt;/a&gt;&lt;/td&gt; 
   &lt;td&gt;&lt;code&gt;rustc --version&lt;/code&gt; / &lt;code&gt;cargo --version&lt;/code&gt;&lt;/td&gt; 
  &lt;/tr&gt; 
 &lt;/tbody&gt; 
&lt;/table&gt; 
&lt;blockquote&gt; 
 &lt;p&gt;说明：Flutter SDK 自带 Dart SDK；如果你已经安装了 Flutter，一般无需再单独安装 Dart。&lt;/p&gt; 
&lt;/blockquote&gt; 
&lt;hr /&gt; 
&lt;h2&gt;⚠️ 免责声明&lt;/h2&gt; 
&lt;ol&gt; 
 &lt;li&gt;本项目为&lt;strong&gt;非官方第三方应用&lt;/strong&gt;，与哔咔漫画官方无任何关联&lt;/li&gt; 
 &lt;li&gt;仅用于&lt;strong&gt;技术交流与学习&lt;/strong&gt;目的，禁止用于商业用途&lt;/li&gt; 
 &lt;li&gt;使用本软件产生的一切后果由使用者自行承担&lt;/li&gt; 
 &lt;li&gt;资源内容版权归原作者及平台所有，请于下载后 24 小时内删除&lt;/li&gt; 
&lt;/ol&gt; 
&lt;hr /&gt;</description>
      
      <media:content url="https://opengraph.githubassets.com/f2acf1b42aa945719634554cfeee97af5ac49aa61fc29527b9200e955ad427bf/raoxwup/haka_comic" medium="image" />
      
    </item>
    
  </channel>
</rss>
