From 1c4458fbd692e67b84b2ab0cfdb5bc73f6435daf Mon Sep 17 00:00:00 2001 From: toly <1981462002@qq.com> Date: Thu, 11 Nov 2021 08:57:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0Flutter=20=E7=89=88=E6=9C=AC?= =?UTF-8?q?=202.5.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++- .../StatefulWidget/zz_no/Scrollable.dart | 58 ------------------- 2 files changed, 4 insertions(+), 63 deletions(-) delete mode 100644 lib/widget_system/widgets/StatefulWidget/zz_no/Scrollable.dart diff --git a/README.md b/README.md index 9537afb..ea722e8 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,10 @@ > 当前Flutter 版本 ``` -Flutter 2.5.0 • channel stable • https://github.com/flutter/flutter.git -Framework • revision 4cc385b4b8 (2 days ago) • 2021-09-07 23:01:49 -0700 -Engine • revision f0826da7ef -Tools • Dart 2.14.0 - +Flutter 2.5.3 • channel stable • https://github.com/flutter/flutter.git +Framework • revision 18116933e7 (4 weeks ago) • 2021-10-15 10:46:35 -0700 +Engine • revision d3ea636dc5 +Tools • Dart 2.14.4 ``` --- diff --git a/lib/widget_system/widgets/StatefulWidget/zz_no/Scrollable.dart b/lib/widget_system/widgets/StatefulWidget/zz_no/Scrollable.dart deleted file mode 100644 index 3309479..0000000 --- a/lib/widget_system/widgets/StatefulWidget/zz_no/Scrollable.dart +++ /dev/null @@ -1,58 +0,0 @@ -//import 'package:flutter/material.dart'; -// -///// create by 张风捷特烈 on 2020-03-28 -///// contact me by email 1981462002@qq.com -///// 说明: -// -//class CustomScrollable extends StatelessWidget { -// final data = [ -// Colors.blue[50], -// Colors.blue[100], -// Colors.blue[200], -// Colors.blue[300], -// Colors.blue[400], -// Colors.blue[500], -// Colors.blue[600], -// Colors.blue[700], -// Colors.blue[800], -// Colors.blue[900], -// ]; -// -// @override -// Widget build(BuildContext context) { -// return Container( -// height: 200, -// child: Scrollable( -// viewportBuilder: (ctx, p) => Viewport(offset: p, -// slivers: [ -// -// ], -// ), -// ), -// ); -// } -// -// Column buildColumn() { -// return Column( -// children: data -// .map((color) => Container( -// alignment: Alignment.center, -// height: 50, -// color: color, -// child: Text( -// colorString(color), -// style: TextStyle(color: Colors.white, shadows: [ -// Shadow( -// color: Colors.black, -// offset: Offset(.5, .5), -// blurRadius: 2) -// ]), -// ), -// )) -// .toList(), -// ); -// } -// -// String colorString(Color color) => -// "#${color.value.toRadixString(16).padLeft(8, '0').toUpperCase()}"; -//}