添加应用版本检查页

This commit is contained in:
toly
2020-06-16 13:02:29 +08:00
parent 5fe4ca91ae
commit ee14c6ea54
8 changed files with 156 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020/6/16
/// contact me by email 1981462002@qq.com
/// 说明:
class NoScrollBehavior extends ScrollBehavior {
@override
Widget buildViewportChrome(
BuildContext context, Widget child, AxisDirection axisDirection) => child;
}