We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf6363 commit 7f9427aCopy full SHA for 7f9427a
README.md
@@ -54,6 +54,7 @@
54
### 文档
55
56
- [Flutter 玩转微信——通讯录](https://www.jianshu.com/p/8d136f31b8a2)
57
+- [Flutter 玩转微信——闪屏页妙用](https://www.jianshu.com/p/e2dcd0e8e04d)
58
59
---
60
lib/views/splash/splash_page.dart
@@ -169,10 +169,13 @@ class _SplashPageState extends State<SplashPage> {
169
MediaQuery.of(context);
170
Widget child;
171
if (_skipMode == MHSplashSkipMode.newFeature) {
172
+ // 引导页
173
child = _buildNewFeatureWidget();
174
} else if (_skipMode == MHSplashSkipMode.ad) {
175
+ // 广告页
176
child = _buildAdWidget();
177
} else {
178
+ // 启动页
179
child = _buildDefaultLaunchImage();
180
}
181
return Material(child: child);
0 commit comments