- 一款使用
Flutter
编写的,Material Design
风格的WanAndroid
客户端, WanAndroid
官网:wanandroid.comApi
:WanAndroid
开放API
Android
: APK 下载iOS
: 不上AppStore要安装到设备比较麻烦,有需要的就自己编译使用吧。(我自己就是在iOS设备上使用的😁)- 严重推荐编译使用
Release
版,要比Debug
版流畅甚多
-
我的运行环境(2019-03-17):
- 如遇到issue 1中的问题,多半是因为版本号的问题,可以将本地
flutter
切换到master
上去试试看。 - 我的
flutter doctor
➜ ~ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel master, v1.3.11-pre.37, on Mac OS X 10.14.3 ******, locale zh-Hans-HK) [✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3) [✓] iOS toolchain - develop for iOS devices (Xcode 10.1) [!] Android Studio (version 3.3) ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. [✓] Android Studio [!] IntelliJ IDEA Ultimate Edition (version 2018.2.5) ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. [✓] VS Code (version 1.31.1) [✓] Connected device (3 available) ! Doctor found issues in 2 categories.
- 如遇到issue 1中的问题,多半是因为版本号的问题,可以将本地
-
Android:@ Flutter Android Release Page
cd wanandroid && flutter build apk
adb install build/app/outputs/apk/release/app-release.apk
-
iOS:@ Flutter iOS Release Page
-
cd wanandroid && flutter build ios
-
In Xcode, open Runner.xcworkspace in wanandroid/ios folder.
-
To ensure that Xcode refreshes the release mode configuration
In Xcode, go to
Product > Scheme > Edit Scheme
, then edit the "Run" scheme -- change the "Build Configuration" to "Release" Detail Link -
Then Run in Xcode
-
-
Font
:App
中自定义了字体NotoSansCJKsc,导致软件增大了13MB,在意的话可以直接在pubspec.ymal中移除。 -
编译不通过的可以参考issue 1,如果还没解决可以再提哈。
- 使用
NestedScrollView
的话,里面的ListView
不能设置controller
,需要使用NotificationListener
,见 stackoverflow - 在上面的基础上,没有了
controller
如何实现类似于controller.animateTo()
的功能呢?,答案是直接使用外面那个NestedScrollView
的controller
TabBarView
中嵌套TabBarView
,在左右滑动子TabBarView
的时候,当子TabBarView
没得滑得时候,自动滑动父TabBarView
。如何实现,我还没找到合适的方法,知情人士务必告知呀。
- All the dependent libraries pubspec.ymal
- Thanks to WanAndroid
- Thanks for sara's icon and iconfont.cn
- Thanks to NotoSansCJKsc by Google
Copyright 2018 Hurshi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.