├── .gitignore ├── LICENSE ├── README.md ├── app ├── README.md ├── assets │ ├── fonts │ │ └── iconfont.ttf │ └── images │ │ └── test.jpg ├── lib │ ├── main.dart │ ├── model │ │ ├── IconFontIcons.dart │ │ └── WidgetsJson.dart │ └── view │ │ ├── components │ │ ├── EZJellyClock.dart │ │ └── ezflutter │ │ │ └── EZMindMap.dart │ │ ├── examples │ │ ├── Example.dart │ │ ├── ExampleAbsorbPointer.dart │ │ ├── ExampleAlertDialog.dart │ │ ├── ExampleAlign.dart │ │ ├── ExampleAnimatedAlign.dart │ │ ├── ExampleAnimatedBuilder.dart │ │ ├── ExampleAnimatedContainer.dart │ │ ├── ExampleAnimatedCrossFade.dart │ │ ├── ExampleAnimatedDefaultTextStyle.dart │ │ ├── ExampleAnimatedListState.dart │ │ ├── ExampleAnimatedModalBarrier.dart │ │ ├── ExampleAnimatedOpacity.dart │ │ ├── ExampleAnimatedPhysicalModel.dart │ │ └── ExampleAnimatedPositioned.dart │ │ └── pages │ │ ├── catalog.dart │ │ ├── detail.dart │ │ ├── indexed.dart │ │ └── mywebview.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── doc ├── Flutter Widgets Catalog.pdf └── Flutter Widgets Catalog.xmind └── nodejs ├── README.md ├── getWidgetsCatalog.js ├── package.json └── widgets_catalog.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/README.md -------------------------------------------------------------------------------- /app/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /app/assets/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/assets/images/test.jpg -------------------------------------------------------------------------------- /app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/main.dart -------------------------------------------------------------------------------- /app/lib/model/IconFontIcons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/model/IconFontIcons.dart -------------------------------------------------------------------------------- /app/lib/model/WidgetsJson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/model/WidgetsJson.dart -------------------------------------------------------------------------------- /app/lib/view/components/EZJellyClock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/components/EZJellyClock.dart -------------------------------------------------------------------------------- /app/lib/view/components/ezflutter/EZMindMap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/components/ezflutter/EZMindMap.dart -------------------------------------------------------------------------------- /app/lib/view/examples/Example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/Example.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAbsorbPointer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAbsorbPointer.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAlertDialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAlertDialog.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAlign.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAlign.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedAlign.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedAlign.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedBuilder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedBuilder.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedContainer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedContainer.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedCrossFade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedCrossFade.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedDefaultTextStyle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedDefaultTextStyle.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedListState.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedListState.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedModalBarrier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedModalBarrier.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedOpacity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedOpacity.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedPhysicalModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedPhysicalModel.dart -------------------------------------------------------------------------------- /app/lib/view/examples/ExampleAnimatedPositioned.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/examples/ExampleAnimatedPositioned.dart -------------------------------------------------------------------------------- /app/lib/view/pages/catalog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/pages/catalog.dart -------------------------------------------------------------------------------- /app/lib/view/pages/detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/pages/detail.dart -------------------------------------------------------------------------------- /app/lib/view/pages/indexed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/pages/indexed.dart -------------------------------------------------------------------------------- /app/lib/view/pages/mywebview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/lib/view/pages/mywebview.dart -------------------------------------------------------------------------------- /app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/pubspec.yaml -------------------------------------------------------------------------------- /app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/app/test/widget_test.dart -------------------------------------------------------------------------------- /doc/Flutter Widgets Catalog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/doc/Flutter Widgets Catalog.pdf -------------------------------------------------------------------------------- /doc/Flutter Widgets Catalog.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/doc/Flutter Widgets Catalog.xmind -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- 1 | 后端采用nodejs云开发 2 | 3 | -------------------------------------------------------------------------------- /nodejs/getWidgetsCatalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/nodejs/getWidgetsCatalog.js -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /nodejs/widgets_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/FlutterWidgetsCatalog/HEAD/nodejs/widgets_catalog.json --------------------------------------------------------------------------------