Git Product home page Git Product logo

workwsl / flutter-one-app Goto Github PK

View Code? Open in Web Editor NEW

This project forked from togettoyou/flutter-one-app

0.0 1.0 0.0 194.91 MB

🎊Flutter 仿「ONE·一个」APP,兼容Android、iOS双平台,Flutter的练手学习,覆盖了各种基本控件使用、下拉刷新上拉加载、HTML解析、音乐播放、图片预览下载、权限申请等,使用Android Studio的FlutterJsonBeanFactory插件完成JSON转Dart实体

Objective-C 0.01% Dart 99.01% Ruby 0.76% Swift 0.12% Kotlin 0.10%

flutter-one-app's Introduction

flutter_one_app

  • 「ONE·一个」是由韩寒监制 ,原《独唱团》主创成员共同制作的一款文艺生活App ,官网地址:「ONE·一个」。此项目为高仿 ,仅供学习交流使用
  • 此项目中的数据均来自one一个接口API,仅供学习交流使用,请勿滥用
  • 项目适合Flutter的练手学习,覆盖了各种基本控件使用、下拉刷新上拉加载、HTML解析、音乐播放、图片预览下载、权限申请等

APK下载体验

浏览器扫码下载

app-release.apk

运行GIF

gif

运行截图

ONE首页 ONE首页-快速索引列表 ONE首页-ToolBar展开列表
ONE首页 ONE首页-快速索引列表 ONE首页-ToolBar展开列表
ONE首页-ToolBar展开列表-日期选择 ALL页面 ALL页面-热门作者
ONE首页-ToolBar展开列表-日期选择 ALL页面 ALL页面-热门作者
ME页面 阅读详情 阅读详情-评论
ME页面 阅读详情 阅读详情-评论
分类-图文 分类-问答 分类-阅读
分类-图文 分类-问答 分类-阅读
分类-连载 分类-音乐 分类-阅读
分类-连载 分类-音乐 分类-图文详情
图片预览 图片缩放 图片下载
图片预览 图片缩放 图片下载
搜索 音乐详情-播放 热门作者动态
搜索 音乐详情-播放 热门作者动态
专题详情
专题详情

使用到的第三方插件

名称 地址
网络请求 dio
网络图片缓存 cached_network_image
图片加载(可定义缩放等功能) extended_image
事件总线 event_bus
下拉刷新、上拉加载 flutter_easyrefresh
微光效果控件 shimmer
日期选择控件 flutter_datetime_picker
HTML加载 flutter_html
网页加载 webview_flutter
权限申请 permission_handler
保存图片到相册 image_downloader
Toast吐司 fluttertoast
音乐播放 audioplayer

小结

项目中音乐播放源为http url,Android 9.0/P和iOS禁止从非https网址加载,故需更改 App 的网络安全配置以允许此类连接

Android

在 res 下新增一个 xml 目录,创建network_security_config.xml文件

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true" />
</network-security-config>

AndroidManifest.xml文件下的application标签增加以下属性

<application
...
 android:networkSecurityConfig="@xml/network_security_config"
...
/>

iOS

Info.plist下编辑

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

flutter-one-app's People

Contributors

togettoyou avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.