Skip to content

Commit 87a9fc8

Browse files
author
yangshangzhi
committed
Merge branch 'ysz' into test
2 parents 487a39d + 4e394bb commit 87a9fc8

File tree

102 files changed

+204
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+204
-204
lines changed

lib/widget/animate/animatedbuilder/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class _IndexState extends State<Index> {
1515
Widget build(BuildContext context) {
1616
return Scaffold(
1717
appBar: AppBar(
18-
title: Text('SingleChildScrollView'),
18+
title: Text('AnimatedBuilder'),
1919
),
2020
body: Center(
2121
child: Text('更新中'),

lib/widget/animate/animatedbuilder/index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
33
// import 'demo.dart' as Demo;
44

55
class Index extends StatefulWidget {
6-
static String title = 'BackdropFilter';
7-
static String mdUrl = 'docs/widget/vision/backdropfilter/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/BackdropFilter-class.html';
6+
static String title = 'AnimatedBuilder';
7+
static String mdUrl = 'docs/widget/animate/animatedbuilder/index.md';
8+
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/AnimatedBuilder-class.html';
99

1010
@override
1111
_IndexState createState() => new _IndexState();

lib/widget/animate/animatedcontainer/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class _IndexState extends State<Index> {
1515
Widget build(BuildContext context) {
1616
return Scaffold(
1717
appBar: AppBar(
18-
title: Text('SingleChildScrollView'),
18+
title: Text('AnimatedContainer'),
1919
),
2020
body: Center(
2121
child: Text('更新中'),

lib/widget/animate/animatedcontainer/index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
33
// import 'demo.dart' as Demo;
44

55
class Index extends StatefulWidget {
6-
static String title = 'BackdropFilter';
7-
static String mdUrl = 'docs/widget/vision/backdropfilter/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/BackdropFilter-class.html';
6+
static String title = 'AnimatedContainer';
7+
static String mdUrl = 'docs/widget/animate/animatedcontainer/index.md';
8+
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/AnimatedContainer-class.html';
99

1010
@override
1111
_IndexState createState() => new _IndexState();

lib/widget/animate/animatedcrossfade/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class _IndexState extends State<Index> {
1515
Widget build(BuildContext context) {
1616
return Scaffold(
1717
appBar: AppBar(
18-
title: Text('SingleChildScrollView'),
18+
title: Text('AnimatedCrossFade'),
1919
),
2020
body: Center(
2121
child: Text('更新中'),

lib/widget/animate/animatedcrossfade/index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
33
// import 'demo.dart' as Demo;
44

55
class Index extends StatefulWidget {
6-
static String title = 'BackdropFilter';
7-
static String mdUrl = 'docs/widget/vision/backdropfilter/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/BackdropFilter-class.html';
6+
static String title = 'AnimatedCrossFade';
7+
static String mdUrl = 'docs/widget/animate/animatedcrossfade/index.md';
8+
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/AnimatedCrossFade-class.html';
99

1010
@override
1111
_IndexState createState() => new _IndexState();

lib/widget/animate/animateddefaulttextstyle/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class _IndexState extends State<Index> {
1515
Widget build(BuildContext context) {
1616
return Scaffold(
1717
appBar: AppBar(
18-
title: Text('SingleChildScrollView'),
18+
title: Text('AnimatedDefaultTextStyle'),
1919
),
2020
body: Center(
2121
child: Text('更新中'),

lib/widget/animate/animateddefaulttextstyle/index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
33
// import 'demo.dart' as Demo;
44

55
class Index extends StatefulWidget {
6-
static String title = 'BackdropFilter';
7-
static String mdUrl = 'docs/widget/vision/backdropfilter/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/BackdropFilter-class.html';
6+
static String title = 'AnimatedDefaultTextStyle';
7+
static String mdUrl = 'docs/widget/animate/animateddefaulttextstyle/index.md';
8+
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/AnimatedDefaultTextStyle-class.html';
99

1010
@override
1111
_IndexState createState() => new _IndexState();

lib/widget/animate/animatedliststate/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class _IndexState extends State<Index> {
1515
Widget build(BuildContext context) {
1616
return Scaffold(
1717
appBar: AppBar(
18-
title: Text('SingleChildScrollView'),
18+
title: Text('AnimatedListState'),
1919
),
2020
body: Center(
2121
child: Text('更新中'),

lib/widget/animate/animatedliststate/index.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:efox_flutter/components/widgetComp.dart' as WidgetComp;
33
// import 'demo.dart' as Demo;
44

55
class Index extends StatefulWidget {
6-
static String title = 'BackdropFilter';
7-
static String mdUrl = 'docs/widget/vision/backdropfilter/index.md';
8-
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/BackdropFilter-class.html';
6+
static String title = 'AnimatedListState';
7+
static String mdUrl = 'docs/widget/animate/animatedliststate/index.md';
8+
static String originCodeUrl = 'https://docs.flutter.io/flutter/widgets/AnimatedListState-class.html';
99

1010
@override
1111
_IndexState createState() => new _IndexState();

0 commit comments

Comments
 (0)