Giter VIP home page Giter VIP logo

azhkhn / flutter_app Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mohsinalimat/flutter_app

0.0 1.0 0.0 92.4 MB

🔥🔥🔥本项目包括各种基本控件使用(Text、TextField、Icon、Image、Listview、Gridview、Picker、Stepper、Dialog、Slider、Row、Appbar、Sizebox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)、豆瓣电影、tubitv、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、好奇心日报、有道精品课、高德定位、音乐播放器🎵、追书神器等板块

License: Apache License 2.0

Java 0.20% Objective-C 0.20% Dart 98.03% CSS 0.95% HTML 0.59% Kotlin 0.01% Swift 0.02%

flutter_app's Introduction

FlutterApp

A new Flutter application.

Android APK 下载地址

声明1:本项目仅供学习,如有侵权请联系本人进行删除。

声明2:本项目中部分功能页面是别人其他项目中的,但是本人并不是完全照抄原作者代码,再此也特别感谢原作者,部分参考别人页面的功能也已标注出原出处,如有侵犯原作者的地方请联系本人进行删除。

联系我

手机号码:18601952581(微信同号)
QQ:1558053958
邮箱:[email protected]

本项目包括:

  • 各种基本控件使用(Text、TextField、Icon、Image、ListView、GridView、Picker、Stepper、Dialog、Slider、Row、Appbar、SizeBox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)
  • 自定义控件及使用
  • 各种UI (豆瓣电影、tubi TV、追书神器、好奇心日报、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、朋友圈、有道精品课、高德地图应用demo等)

运行环境

[✓] Flutter (Channel beta, v1.10.7, on Mac OS X 10.14.5 18F132, locale zh-Hans-CN)
    • Flutter version 1.10.7 at /Users/14cells/Android/flutter
    • Framework revision e70236e36c (3 weeks ago), 2019-10-02 09:32:30 -0700
    • Engine revision 9e6314d348
    • Dart version 2.6.0 (build 2.6.0-dev.0.0 1103600280)

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /Users/14cells/Android/SDK
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-29, build-tools 29.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

[✗] Xcode - develop for iOS and macOS
    ✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
      Download at: https://developer.apple.com/xcode/download/
      Or install Xcode via the App Store.
      Once installed, run:
        sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
    ✗ CocoaPods not installed.
        CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
        Without CocoaPods, plugins will not work on iOS or macOS.
        For more info, see https://flutter.dev/platform-plugins
      To install:
        sudo gem install cocoapods

[✓] Android Studio (version 3.5)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 40.2.2
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] Connected device (1 available)
    • MI 5X • 1c7664100104 • android-arm64 • Android 8.1.0 (API 27)

注意事项

  • 高德定位ios设备的apikey没有配置,使用ios设备的朋友们可以自己去高德地图申请apikey,ios具体配置见高德地图flutter插件配置。

  • 音乐🎵播放器Music Player暂不支持ios设备,详情请见插件Flute-Music-Player

  • Multi Image Picker 插件 ios 配置见Multi Image Picker 使用

  • 项目中某些接口为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/>
    <key>NSAllowsArbitraryLoadsInWebContent</key>
    <true/>
</dict>

API接口

运行截图

登录注册

1 2 3 4
登录 注册 找回密码 视频背景登录
1 2 3 4
密码登录 快速登录 注册 找回密码
1 2 3 4
登录 注册 登录 注册
1 2 3 4
--- 注册 登录 登录/注册
1 2 3 4
登录 选择性别 选择兴趣爱好 我的
1 2 3 4
书架(空) 书架 书城 分类
1 2 3 4
排行 书单 书单详情 漫画
1 2 3 4
书籍详情1 书籍详情2 目录1 目录2
1 2 3 4
阅读 阅读设置 搜索 搜索结果
1 2 3 4
豆瓣电影首页(banner、热映) 豆瓣电影首页(即将上映、榜单) 豆瓣电影首页(分类浏览) 电影(正在热播)
1 2 3 4
筛选(宫格) 筛选(列表) 筛选(地区) 筛选(条件)
1 2 3 4
年度榜单 年度榜单 年度榜单 年度榜单
1 2 3 4
电影详情1 电影详情2 电影详情3 电影(TOP250)
1 2 3 4
电影花絮 电影花絮(全屏) 电影剧照 电影(排行榜)

tubi TV 可以免费看电影的APP(纯英文)

1 2 3 4
首页 分类列表 详情 搜索

天气

1 2 3
实况天气/空气质量指数 逐小时、7天天气预报 生活指数
1 2 3
日出日落 城市列表 仿京东地址选择器
1 2 3
首页 首页 首页
1 2 3
分类 购物车 会员中心
1 2 3
商品简介 详情 评论
1 2 3
收货地址 地址 新增地址
1 2 3
每日一文 每日一文 收藏
1 2 3
Music Player Audio Player Flutter Sound

仿微信朋友圈布局

1 2 3 4
头部 九宫格 选择照片 发表编辑
1 2 3 4
启动页 列表页 详情(内容) 详情(推荐)
1 2 3 4
启动页 首页1 首页2 首页3
1 2 3 4
Labs 我说/焦点小组 投票 你猜/你谁啊
1 2 3 4
菜单1 菜单2 栏目列表 栏目详情
1 2 3 4
分类列表(设计) 新闻详情1 新闻详情2 评论
1 2 3 4
首页(广告) 首页(分类) 分类 详情(WebView)

赞赏

如果您喜欢FlutterApp,或感觉FlutterApp帮助到了您,可以点右上角“Star”支持一下,您的支持就是我的动力,谢谢🙂

您也可以扫描下面的二维码,请作者喝杯咖啡☕️

  • 先领个红包
1 2
1 2 3 4

许可证

Apache 2.0

flutter_app's People

Contributors

shichunlei avatar

Watchers

James Cloos 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.