Skip to content

1.0.2 #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Mar 23, 2019
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0e101c4
style: 修改样式
wanwusangzhi Mar 19, 2019
4492eb6
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
wanwusangzhi Mar 19, 2019
54fccec
style:修改样式
wanwusangzhi Mar 19, 2019
1121e35
feat:修改线上线下环境值
wanwusangzhi Mar 19, 2019
6fce888
更新代码
Mar 20, 2019
63bf655
Merge branch 'magic' into dev
Mar 20, 2019
c4f1189
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
Mar 20, 2019
40748dd
feat:增加gesturedetector组件
wanwusangzhi Mar 20, 2019
acf0fb4
Merge branch 'dev' of github.com:efoxTeam/flutter-ui into dev
zxxlx Mar 20, 2019
de19a89
feat:增加颜色切换 优化内容页体验
ckken Mar 21, 2019
204dfe5
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
ckken Mar 21, 2019
bcbd230
feat:多主题支持
ckken Mar 21, 2019
c6c3174
feat:增加gesturedector
wanwusangzhi Mar 21, 2019
7a8cf01
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
wanwusangzhi Mar 21, 2019
edf22b8
feat:完成主題切換
ckken Mar 21, 2019
e7d6bb4
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
ckken Mar 21, 2019
87c709b
fix:解決主題閃動問題
ckken Mar 21, 2019
dc3774f
style:优化二级页面主题样式
wanwusangzhi Mar 22, 2019
e5d004f
加入自动更新功能
ckken Mar 22, 2019
63da2e7
Merge branch 'master' into dev
ckken Mar 22, 2019
be2b3b4
feat:v1.0.2
ckken Mar 22, 2019
298b2ce
doc:更新文档
ckken Mar 22, 2019
fc7ad76
feat:屏蔽ios版本检测功能
ckken Mar 22, 2019
fe5b7db
feat:自定义expansionTile 组件
ckken Mar 22, 2019
a2a8269
feat:增加gesturedetector
wanwusangzhi Mar 22, 2019
4b5a9e9
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
wanwusangzhi Mar 22, 2019
03dfa24
doc:增加demo预览图
ckken Mar 23, 2019
29b5307
Merge branch 'dev' of https://github.com/efoxTeam/flutter-ui into dev
ckken Mar 23, 2019
c400197
doc:更新预览
ckken Mar 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat:修改线上线下环境值
  • Loading branch information
wanwusangzhi committed Mar 19, 2019
commit 1121e355a31bbf3e7d46dbca429c7b66f80ebe8b
2 changes: 1 addition & 1 deletion lib/config/index.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'development.dart' as Development;
import 'production.dart' as Production;

const bool isPro = false;
const bool isPro = true;

Object env = isPro ? Production.Config() : Development.Config();